/* ============================================
   TREK BHUTAN - MAIN STYLESHEET
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --green-dark:   #0B3D2E;
  --green-mid:    #1A5C41;
  --green-light:  #2E8B5A;
  --gold:         #C8860A;
  --gold-light:   #E9A61E;
  --parchment:    #F5ECD7;
  --cream:        #FAF7F2;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-mid:     #3D3D3D;
  --text-light:   #6B6B6B;
  --border:       #E2D9CC;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-height:   72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.container--wide { max-width: 1440px; }
.container--narrow { max-width: 800px; }

.section-pad { padding: 80px 0; }
.section-pad--lg { padding: 112px 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-dark); }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,134,10,0.1);
  border: 1px solid rgba(200,134,10,0.25);
  border-radius: 100px;
  padding: 4px 14px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 32px;
  border-radius: 2px;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,134,10,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-ghost {
  padding: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  gap: 6px;
}
.btn-ghost:hover { gap: 10px; }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover, .nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__dropdown-link:hover {
  background: var(--cream);
  color: var(--green-dark);
}
.nav__dropdown-link span { font-size: 0.75rem; color: var(--text-light); }

.nav__cta {
  background: var(--gold);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
}
.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--green-dark);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__mobile-link:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.nav__mobile-section {
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,61,46,0.75) 0%,
    rgba(11,61,46,0.4) 50%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  padding-top: var(--nav-height);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero__stats-inner {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 0;
  max-width: 700px;
}

.hero__stat {
  flex: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 64px) 0 64px;
  background: var(--green-dark);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.trek-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.trek-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.trek-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--green-mid);
}
.trek-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.trek-card:hover .trek-card__img img { transform: scale(1.06); }

.trek-card__difficulty {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.difficulty-easy    { background: #d1fae5; color: #065f46; }
.difficulty-moderate { background: #fef3c7; color: #92400e; }
.difficulty-hard    { background: #fee2e2; color: #991b1b; }

.trek-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trek-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.trek-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.trek-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.trek-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-mid);
}
.trek-card__meta-item svg { color: var(--gold); flex-shrink: 0; }

.trek-card__footer { display: flex; align-items: center; justify-content: space-between; }

/* ============================================
   WHY TREK WITH US
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(200,134,10,0.12);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(200,134,10,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================
   TREK DETAIL PAGE
   ============================================ */
.trek-detail-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  background: var(--green-dark);
  overflow: hidden;
}

.trek-detail-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.trek-detail-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,61,46,0.9) 0%, rgba(11,61,46,0.3) 60%, transparent 100%);
}

.trek-detail-hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  width: 100%;
}

.trek-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 0;
  margin-top: 24px;
}

.trek-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.trek-stat:last-child { border-right: none; }

.trek-stat__label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.trek-stat__value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Itinerary */
.itinerary { padding: 80px 0; }

.itinerary__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.day-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--white);
}

.day-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background var(--transition);
  user-select: none;
}
.day-item__header:hover { background: var(--cream); }

.day-item__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.day-item.active .day-item__number {
  background: var(--gold);
}

.day-item__title {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.day-item__meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.day-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.day-item.active .day-item__chevron { transform: rotate(180deg); }

.day-item__body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}
.day-item.active .day-item__body { display: block; }

.day-item__body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 16px;
}

.day-item__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.day-detail-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* Sidebar */
.trek-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.sidebar-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 6px 0;
  line-height: 1.5;
}
.includes-list li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.excludes-list li::before {
  content: '✗';
  color: #ef4444;
}

.book-card {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.book-card .sidebar-card__title {
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

.book-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* ============================================
   PRACTICAL INFO PAGE
   ============================================ */
.practical-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  background: transparent;
}
.tab-btn:hover { background: var(--cream); color: var(--green-dark); }
.tab-btn.active {
  background: var(--green-dark);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.info-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.info-block--full {
  grid-column: 1 / -1;
}

.info-block__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block__title span { font-size: 1.3rem; }

.info-block p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}

.info-block ul {
  list-style: disc;
  padding-left: 20px;
}
.info-block ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.season-card {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.season-card--best { background: rgba(42,139,90,0.08); border-color: rgba(42,139,90,0.3); }
.season-card--ok   { background: rgba(200,134,10,0.08); border-color: rgba(200,134,10,0.3); }
.season-card--bad  { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.3); }

.season-card__header {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.season-card p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

.gear-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.gear-table th, .gear-table td {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.gear-table th {
  background: var(--cream);
  font-weight: 600;
  color: var(--text-dark);
}
.gear-table td { color: var(--text-mid); }

.warning-box {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
}
.warning-box p { color: var(--text-mid); font-size: 0.875rem; margin: 0; }
.warning-box strong { color: #b91c1c; }

.tip-box {
  background: rgba(42,139,90,0.06);
  border: 1px solid rgba(42,139,90,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
}
.tip-box p { color: var(--text-mid); font-size: 0.875rem; margin: 0; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.value-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.value-item__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.value-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.value-item__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card__img {
  height: 220px;
  background: var(--green-mid);
  overflow: hidden;
}
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 20px; }
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.team-card__desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200,134,10,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

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

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--green-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,134,10,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-banner__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--parchment); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}
.testimonial-card__country {
  font-size: 0.775rem;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #07261C;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 16px 0 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--white); }

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--gold-light); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  font-size: 1rem;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .itinerary__layout { grid-template-columns: 1fr; }
  .trek-sidebar { position: static; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-img-stack { height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .info-section { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section-pad { padding: 56px 0; }

  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__stats { display: none; }
  .hero__content { max-width: 100%; }

  .trek-stats-bar { padding: 16px 0; }
  .trek-stat { min-width: 80px; padding: 0 14px; }
  .trek-stat__value { font-size: 0.9rem; }

  .card-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand p { max-width: 100%; }

  .practical-tabs { flex-direction: column; }
  .tab-btn { min-width: auto; }

  .season-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .about-img-stack { display: none; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 2rem; }
  .trek-stats-bar { overflow-x: auto; flex-wrap: nowrap; }
  .trek-stat { min-width: 100px; }
  .day-item__meta { display: none; }
}

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