:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --secondary: #0f766e;
  --secondary-light: #14b8a6;
  --accent: #d97706;
  --accent-light: #f59e0b;
  --bg-main: #ffffff;
  --bg-offset: #f8fafc;
  --text-main: #334155;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-premium: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.trek-page {
  background: var(--bg-offset);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  margin: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -----------------------------------------
   CINEMATIC HERO HEADER
----------------------------------------- */
.hero-cover {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 550px;
  max-height: 800px;
  display: flex;
  align-items: flex-end;
  background-color: var(--primary);
  overflow: hidden;
}

.hero-cover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: none;
  transition: transform 12s cubic-bezier(0.1, 1, 0.1, 1);
}

.hero-cover:hover .hero-cover-bg img {
  transform: scale(1.04);
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.hero-cover-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 20px 80px;
  color: #ffffff;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-region-badge,
.hero-difficulty-badge {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-region-badge {
  animation-delay: 0.05s;
}

.hero-difficulty-badge {
  animation-delay: 0.1s;
}

.hero-region-badge i {
  color: #2dd4bf; /* Sleek teal icon */
}

.hero-difficulty-badge i {
  color: #fbbf24; /* Default gold icon */
}

/* Custom difficulty icon colors */
.hero-difficulty-badge.easy i { color: #10b981; }
.hero-difficulty-badge.moderate i { color: #fbbf24; }
.hero-difficulty-badge.strenuous i,
.hero-difficulty-badge.challenging i,
.hero-difficulty-badge.hard i { color: #ef4444; }

.hero-cover-content h1.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(15, 23, 42, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-cover-content .hero-intro {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  margin: 0 0 30px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-quick-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.05); /* Highly transparent premium glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.hero-stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.1) 70%, transparent);
}

.hero-stat-card .stat-icon {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9); /* Unified clean white/light icons */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.hero-stat-card:hover .stat-icon {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25);
}

.hero-stat-card .stat-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-card .hero-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-stat-card .hero-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

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

/* -----------------------------------------
   TREK DNA DASHBOARD
----------------------------------------- */
.dna-dashboard {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 10;
  padding: 24px 0;
}

.dna-dashboard-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}

.dna-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-offset);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: var(--transition);
}

.dna-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(20, 184, 166, 0.25);
  background: #ffffff;
}

.dna-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(15, 118, 110, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.dna-item:hover .dna-icon-wrap {
  background: var(--secondary);
  color: #ffffff;
}

.dna-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dna-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.dna-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Dynamic Difficulty Badge Styles */
.difficulty-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 3px;
  width: fit-content;
}

.difficulty-badge.easy {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.difficulty-badge.moderate {
  background: rgba(245, 158, 11, 0.08);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.difficulty-badge.strenuous {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

/* -----------------------------------------
   EXPEDITION SPLIT LAYOUT
----------------------------------------- */
.expedition-layout {
  max-width: 1320px;
  margin: 40px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.content-hub {
  min-width: 0;
}

/* -----------------------------------------
   TAB NAVIGATION SYSTEM
----------------------------------------- */
.expedition-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 30px;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.expedition-tabs::-webkit-scrollbar {
  display: none;
}

.tab-trigger {
  border: 0;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 14px 4px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-trigger:hover {
  color: var(--secondary);
}

.tab-trigger.active {
  color: var(--secondary);
}

.tab-trigger.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
}

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

.expedition-section {
  margin-bottom: 50px;
  animation: fadeIn 0.6s ease;
}


/* -----------------------------------------
   TAB 1: OVERVIEW & HIGHLIGHTS
----------------------------------------- */
.overview-card-panel {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.section-single-image {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  background: var(--bg-offset);
  position: relative;
}

.section-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.section-single-image:hover img {
  transform: scale(1.03);
}

.section-single-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
  padding: 16px 20px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.4);
}

.overview-card-panel h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.overview-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary-light);
}

.overview-text p {
  margin-bottom: 16px;
}

.highlights-redesign {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.highlights-redesign .section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 6px;
  display: block;
}

.highlights-redesign h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.highlight-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(15, 118, 110, 0.1);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(20, 184, 166, 0.25);
}

.highlight-card:hover::before {
  background: var(--secondary);
}

.highlight-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.highlight-card:hover .highlight-badge {
  background: var(--secondary);
  border-color: var(--secondary);
}

.highlight-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  transition: var(--transition);
}

.highlight-card:hover .highlight-num {
  color: #ffffff;
}

.highlight-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary-light);
}

.highlight-content p {
  margin: 0;
}

.itinerary-gallery-margin {
  margin-top: 35px;
}

.itinerary-intro-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.itinerary-intro-row h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.btn-accordion-control {
  border: 1px solid var(--border);
  background: var(--bg-main);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accordion-control:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.trail-log {
  position: relative;
  padding-left: 32px;
}

.trail-log::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: var(--border);
  z-index: 1;
}

.log-item {
  position: relative;
  margin-bottom: 20px;
}

.log-node {
  position: absolute;
  left: -32px;
  top: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 2px solid var(--border);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.log-item.open .log-node {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.25);
}

.log-header-btn {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
  transition: var(--transition);
}

.log-header-btn:hover {
  border-color: var(--secondary-light);
  background: var(--bg-offset);
}

.log-item.open .log-header-btn {
  border-color: var(--secondary-light);
  background: rgba(20, 184, 166, 0.02);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.log-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.log-day-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.log-day-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.log-chevron {
  color: var(--text-muted);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  background: var(--bg-offset);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-left: 16px;
}

.log-item.open .log-chevron {
  transform: rotate(180deg);
  background: rgba(20, 184, 166, 0.1);
  color: var(--secondary);
}

.log-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.log-item.open .log-body {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

.log-content-card {
  border: 1px solid var(--border);
  border-top: 0;
  background: var(--bg-main);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 20px 24px;
  margin-top: -4px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.log-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.log-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-offset);
  border: 1px solid var(--border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.log-pill.altitude-pill {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--accent);
}

.log-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary-light);
  margin: 0;
}

/* -----------------------------------------
   TAB 3: WHAT'S INCLUDED / EXCLUDED & GEAR
----------------------------------------- */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.inc-card {
  background: linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid var(--border);
  border-left: 5px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 24px;
}

.exc-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffbfa 100%);
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-premium);
}

.inc-card h3,
.exc-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.inc-card h3 {
  color: var(--secondary);
}

.exc-card h3 {
  color: var(--accent);
}

.inc-card h3 i {
  color: var(--secondary);
  background: rgba(15, 118, 110, 0.08);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.exc-card h3 i {
  color: var(--accent);
  background: rgba(217, 119, 6, 0.08);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.inc-list,
.exc-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inc-list li,
.exc-list li {
  position: relative;
  padding-left: 36px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary-light);
  transition: var(--transition);
}

.inc-list li:hover,
.exc-list li:hover {
  transform: translateX(4px);
  color: var(--text-dark);
}

.inc-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.exc-list li::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.inc-list li:hover::before {
  background: #10b981;
  color: #ffffff;
}

.exc-list li:hover::before {
  background: #ef4444;
  color: #ffffff;
}

/* -----------------------------------------
   TAB 4: FAQS ACCORDION
----------------------------------------- */
.faqs-wrap-panel {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 1;
}

.faqs-wrap-panel h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.faq-q-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-q-item:last-child {
  border-bottom: 0;
}

.faq-q-btn {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.faq-q-btn:hover {
  color: var(--secondary);
}

.faq-q-icon {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-q-item.open .faq-q-icon {
  transform: rotate(180deg);
  color: var(--secondary);
}

.faq-ans-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-q-item.open .faq-ans-body {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
}

.faq-ans-content {
  padding-top: 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary-light);
}

.faq-ans-content p {
  margin: 0;
}

/* -----------------------------------------
   STICKY BOOKING HUD CARD
----------------------------------------- */
.booking-hud {
  position: sticky;
  top: 96px;
  z-index: 100;
}

.booking-hud-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-hud-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(15, 118, 110, 0.1), 0 0 20px rgba(20, 184, 166, 0.05);
}

.hud-price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hud-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.hud-price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hud-price-value span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hud-calculator {
  background: var(--bg-offset);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hud-calc-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pax-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 4px;
}

.pax-btn {
  border: 0;
  background: transparent;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.pax-btn:hover {
  background: var(--bg-offset);
  color: var(--secondary);
}

.pax-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 40px;
  text-align: center;
}

.price-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-row.total-row {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 4px;
}

.discount-tag {
  color: var(--secondary);
  font-weight: 600;
  background: rgba(15, 118, 110, 0.08);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

.hud-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hud-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: 0;
  text-decoration: none;
}

.hud-btn.primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}

.hud-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4);
}

.hud-btn.secondary {
  background: var(--bg-main);
  border: 1px solid var(--border);
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.hud-btn.secondary:hover {
  background: var(--bg-offset);
  border-color: var(--text-muted);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.05);
}

.hud-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.hud-guarantee i {
  color: #10b981;
}

/* -----------------------------------------
   CINEMATIC MASONRY GALLERY
----------------------------------------- */
.gallery-section-redesign {
  max-width: 1320px;
  margin: 60px auto;
  padding: 0 20px;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 35px;
}

.gallery-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
}

.gallery-section-redesign h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 8/6;
}

.gallery-card.video-item {
  cursor: default;
}

.gallery-card img, 
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}

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

.gallery-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(15, 118, 110, 0.8);
  padding: 4px 10px;
  border-radius: 99px;
}

.gallery-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

/* Hidden elements for gallery toggle */
.gallery-hidden {
  display: none !important;
}

/* Show All button styling */
.gallery-show-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.gallery-show-all-btn {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-main);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
}

.gallery-show-all-btn:hover {
  background: var(--bg-offset);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.gallery-show-chevron {
  transition: transform 0.3s ease;
}

.gallery-show-all-btn.active .gallery-show-chevron {
  transform: rotate(180deg);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #ffffff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #ffffff;
  font-size: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-top: 16px;
  font-family: 'Outfit', sans-serif;
}

#lightbox-counter {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}

#lightbox-alt {
  font-size: 1.1rem;
  font-weight: 600;
}

/* -----------------------------------------
   SOCIAL PROOF & TESTIMONIALS
----------------------------------------- */
.social-proof-section {
  background: linear-gradient(180deg, var(--bg-offset) 0%, #fffbeb 100%);
  border-top: 1px solid var(--border);
  padding: 80px 20px;
}

.social-proof-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.social-heading {
  text-align: center;
  margin-bottom: 50px;
}

.social-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
}

.social-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.reviews-carousel-wrap {
  position: relative;
  margin-bottom: 60px;
}

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

.review-slider-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
}

.reviews-grid-redesign {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.guest-review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

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

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

.review-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-info {
  display: flex;
  flex-direction: column;
}

.review-user-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review-rating-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  display: flex;
  gap: 2px;
}

.review-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.review-card-title-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 8px;
}
.reviews-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-main);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.reviews-dot:hover {
  border-color: var(--secondary-light);
  background: var(--bg-offset);
}

.reviews-dot.active {
  width: 24px;
  border-radius: 99px;
  background: var(--secondary);
  border-color: var(--secondary);
}

/* Video Stories block styles */
.video-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.video-story-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
}

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

.video-thumbnail-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: #000;
}

.video-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-story-card:hover .video-thumbnail-wrap img {
  transform: scale(1.05);
}

.video-play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
  cursor: pointer;
  border: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.video-play-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.video-play-btn-overlay:hover .video-play-icon {
  transform: scale(1.1);
  background: var(--secondary);
  color: #ffffff;
}

.video-card-body {
  padding: 16px;
}

.video-guest-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 4px;
}

.video-guest-route {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* -----------------------------------------
   PREMIUM CUSTOM GRADIENT BORDERS (MODERN REDESIGN)
----------------------------------------- */
.overview-card-panel::before,
.booking-hud-card::before,
.highlights-redesign::before,
.faqs-wrap-panel::before,
.guest-review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.08) 0%, rgba(20, 184, 166, 0.18) 50%, rgba(15, 23, 42, 0.04) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s ease;
  z-index: 2;
}

.overview-card-panel:hover::before,
.booking-hud-card:hover::before,
.highlights-redesign:hover::before,
.faqs-wrap-panel:hover::before,
.guest-review-card:hover::before {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--accent) 100%);
}

.overview-card-panel,
.booking-hud-card,
.highlights-redesign,
.faqs-wrap-panel,
.guest-review-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.overview-card-panel:hover,
.highlights-redesign:hover,
.faqs-wrap-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(15, 118, 110, 0.06), 0 0 15px rgba(20, 184, 166, 0.04);
}

/* -----------------------------------------
   RESPONSIVE LAYOUTS & MOBILE CSS
----------------------------------------- */
@media (max-width: 1024px) {
  .expedition-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-hud {
    position: static;
    order: -1;
    width: 100%;
  }

  .booking-hud-card {
    background: var(--bg-main);
  }
}

@media (max-width: 768px) {
  .hero-cover {
    height: 60vh;
    min-height: 480px;
  }

  .hero-cover-content {
    padding: 40px 16px 40px;
  }

  .hero-cover-content h1.hero-title {
    font-size: 1.8rem;
  }

  .hero-quick-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 16px;
    gap: 12px;
    margin-top: 24px;
  }
  
  .hero-stat-card:nth-child(even)::after {
    display: none;
  }
  
  .hero-stat-card:nth-child(1)::after,
  .hero-stat-card:nth-child(3)::after {
    right: -8px;
  }

  .dna-dashboard {
    padding: 16px 0;
  }

  .dna-dashboard-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
    gap: 12px;
  }

  .expedition-tabs {
    gap: 16px;
  }

  .tab-trigger {
    font-size: 0.95rem;
    padding: 12px 2px;
  }

  .overview-card-panel,
  .highlights-redesign,
  .faqs-wrap-panel,
  .inc-card,
  .exc-card {
    padding: 20px 16px;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trail-log {
    padding-left: 0;
  }

  .trail-log::before {
    display: none;
  }

  .log-node {
    display: none;
  }

  .log-header-btn {
    padding: 12px 16px;
  }

  .log-day-title {
    font-size: 0.95rem;
  }

  .log-content-card {
    padding: 16px;
  }

  .slider-btn {
    display: none; /* Hide slider arrows on small screens */
  }

  .reviews-pager, .stories-pager {
    display: flex !important;
  }

  .section-single-image {
    border-radius: var(--radius-md);
    margin-top: 20px;
    height: 280px;
    aspect-ratio: auto;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gallery-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .lightbox-prev {
    left: 12px;
  }
  .lightbox-next {
    right: 12px;
  }
  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 760px) {
  body.trek-page {
    padding-top: 82px;
  }
}

@media (max-width: 480px) {
  .dna-dashboard-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .dna-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 12px;
  }

  .dna-icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .dna-value {
    font-size: 0.9rem;
  }

  .difficulty-badge {
    font-size: 0.7rem;
    padding: 2px 6px;
  }

  .hero-quick-stats-bar {
    grid-template-columns: 1fr;
    padding: 10px 12px;
    gap: 10px;
    margin-top: 16px;
  }
  
  .hero-stat-card::after {
    display: none !important;
  }
  
  .hero-stat-card .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .hero-stat-card .hero-stat-value {
    font-size: 0.88rem;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

/* -----------------------------------------
   HEADER MENU CONTRAST FIX FOR TREK PAGES
----------------------------------------- */
.navbar .nav-links a {
  color: rgba(255, 255, 255, 0.9) !important;
}

.navbar .nav-links a:hover,
.navbar .nav-links a:focus {
  color: #ffffff !important;
}

.navbar .mega-toggle-btn {
  color: rgba(255, 255, 255, 0.7) !important;
}

.navbar .mega-toggle-btn:hover {
  color: #ffffff !important;
}

/* -----------------------------------------
   RELATED PACKAGES SECTION
----------------------------------------- */
.related-packages-section {
  padding: 80px 0 100px;
  background: var(--bg-offset);
  border-top: 1px solid var(--border);
  position: relative;
}

.related-packages-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.related-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 8px;
  display: block;
}

.related-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 48px;
  color: var(--text-dark);
}

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

/* We reuse region-card from styles.css, but we apply some enhancements */
.related-packages-section .region-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.related-packages-section .region-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(20, 184, 166, 0.2);
}

.related-packages-section .region-image {
  height: 240px;
  border-bottom: 1px solid var(--border);
}

.related-packages-section .region-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-packages-section .region-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
  line-height: 1.4;
  height: 2.8em; /* Force 2 lines to keep grid aligned */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-packages-section .region-duration {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.related-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.related-card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.related-packages-section .region-btn {
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #ffffff;
  transition: var(--transition);
  align-self: center;
}

.related-packages-section .region-card:hover .region-btn {
  background: var(--secondary);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .related-packages-section .region-content h3 {
    height: auto;
    -webkit-line-clamp: none;
  }
}
