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

:root {
  --green-dark:  #1f6b3a;
  --green-mid:   #1f6b3a;
  --green-light: #2e9e5a;
  --earth:       #8b5e3c;
  --cream:       #faf7ec;
  --white:       #ffffff;
  --orange:      #e07b39;
  --text-dark:   #1a2820;
  --text-mid:    #3d5047;
  --text-light:  #6b7f74;
  --radius:      8px;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

/* ── Smooth scroll-in animations ── */
.scroll-hidden {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

img { display: block; width: 100%; max-width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text-mid); }

/* ── Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: #c96a2a; transform: translateY(-2px); }

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

.tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.navbar.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* Transparent state (over dark hero) — white text */
.navbar:not(.scrolled) .logo        { color: var(--white); }
.navbar:not(.scrolled) .logo span   { color: var(--orange); }
.navbar:not(.scrolled) .logo-mark   { filter: brightness(0) invert(1); }
.navbar:not(.scrolled) .nav-links a { color: var(--white); opacity: 0.9; }
.navbar:not(.scrolled) .hamburger span { background: var(--white); }
.navbar:not(.scrolled) .lang-btn    { color: rgba(255,255,255,0.75); }
.navbar:not(.scrolled) .lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.navbar:not(.scrolled) .lang-switcher  { border-color: rgba(255,255,255,0.35); }
.navbar:not(.scrolled) .lang-btn + .lang-btn { border-color: rgba(255,255,255,0.35); }

/* Scrolled state (cream bg) — green text */
.navbar.scrolled .logo        { color: var(--green-dark); }
.navbar.scrolled .nav-links a { color: var(--green-dark); }
.navbar.scrolled .hamburger span { background: var(--green-dark); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif !important;
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.logo span { color: var(--orange); }
.logo-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ── Full logo lockup (hero / about / footer) ── */
.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--green-dark);
}
.logo-lockup .lockup-mark {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}
.logo-lockup .lockup-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
.logo-lockup .lockup-rule::before,
.logo-lockup .lockup-rule::after {
  content: '';
  display: block;
  height: 1px;
  background: currentColor;
  flex: 1;
  max-width: 70px;
  opacity: 0.5;
}
.logo-lockup .lockup-diamond {
  width: 7px;
  height: 7px;
  background: currentColor;
  transform: rotate(45deg);
  flex: none;
}
.logo-lockup .lockup-name {
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  color: inherit;
}
.logo-lockup .lockup-estd {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  opacity: 0.8;
}
.logo-lockup .lockup-estd::before,
.logo-lockup .lockup-estd::after {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
/* Cream variant for dark backgrounds */
.logo-lockup.cream {
  color: var(--cream);
}
.logo-lockup.cream .lockup-name { color: var(--cream); }

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--green-dark);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { opacity: 1; }

/* ── Dropdown menu ── */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: none; }
.nav-links .has-dropdown > a .chevron {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.65rem;
  vertical-align: middle;
  transition: transform 0.25s ease;
}
.nav-links .has-dropdown:hover > a .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  min-width: 180px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 999;
  list-style: none;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: none;
  border-bottom-color: var(--white);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.55rem 1.2rem;
  color: var(--text-dark) !important;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 1 !important;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.dropdown li a:hover {
  background: var(--cream);
  color: var(--green-dark) !important;
}
.dropdown li a::after { display: none; }
.dropdown .dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 0.35rem 0;
}

.nav-cta { font-size: 0.9rem; padding: 0.55rem 1.2rem; }

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(31,107,58,0.3);
  border-radius: 6px;
  overflow: hidden;
}
.lang-btn {
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(31,107,58,0.7);
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1.2;
}
.lang-btn:hover { color: var(--green-dark); background: rgba(31,107,58,0.08); }
.lang-btn.active { background: var(--orange); color: var(--white); }
.lang-btn + .lang-btn { border-left: 1.5px solid rgba(31,107,58,0.3); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, #2a5c2a 50%, #1a3d1a 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(74,158,74,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(139,94,60,0.1) 0%, transparent 50%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shapes::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 80%, 25% 40%, 50% 70%, 75% 30%, 100% 60%, 100% 100%, 0 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content h1 em { font-style: normal; color: var(--orange); }
.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
}
.stat { color: var(--white); }
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}
.stat-label { font-size: 0.85rem; opacity: 0.75; }

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}
.feature-card h3 { color: var(--green-dark); margin-bottom: 0.5rem; }

/* ── Tour Cards ── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.75rem;
}
.tour-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.tour-img {
  height: 210px;
  position: relative;
}
.tour-img .placeholder-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.tour-badge {
  position: absolute;
  top: 12px; left: 12px;
}
.tour-body { padding: 1.25rem; }
.tour-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0.5rem 0 0.75rem;
}
.tour-meta span { display: flex; align-items: center; gap: 0.3rem; }
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.tour-price { font-size: 1.2rem; font-weight: 700; color: var(--green-mid); }
.tour-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-light); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }

/* ── Trek Finder Widget ── */
.trek-finder {
  max-width: 600px;
  margin: 0 auto;
}
.tf-step { display: none; }
.tf-step.active { display: block; animation: tfFadeIn 0.35s ease; }
@keyframes tfFadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

.tf-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.5rem;
}
.tf-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tf-btn {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.tf-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--orange);
  transform: translateX(4px);
}

/* Result card */
.tf-match-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  color: var(--text-dark);
  text-align: center;
}
.tf-match-card .match-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.tf-match-card h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.tf-match-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.tf-match-card .match-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.tf-match-card .match-meta span { font-weight: 600; color: var(--text-mid); }

.tf-restart {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 1.2rem;
  display: block;
  width: 100%;
  text-align: center;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.tf-restart:hover { color: var(--white); }

.tf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.tf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s;
}
.tf-dot.active { background: var(--orange); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), #2a5c2a);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), #2e6b2e);
  color: var(--white);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.page-hero.has-photo {
  background-size: cover;
  background-position: center;
}
.page-hero.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,30,15,0.55) 0%,
    rgba(10,30,15,0.65) 100%);
}
.page-hero.has-photo .container { position: relative; z-index: 1; }

/* ── Filter Bar (tours page) ── */
.filter-bar-wrap {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: var(--cream);
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(31,107,58,0.1);
}
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border-radius: 24px;
  border: 1.5px solid rgba(31,107,58,0.25);
  background: var(--white);
  color: var(--text-mid);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.filter-btn .f-icon { font-size: 1rem; line-height: 1; }
.filter-btn .f-count {
  background: rgba(31,107,58,0.1);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(31,107,58,0.15);
}
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(31,107,58,0.3);
}
.filter-btn.active .f-count {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* Card fade animation */
.tour-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tour-card.hiding {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
}

/* ── About Page ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-box {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  background: linear-gradient(135deg, #2e6b2e, var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-text h2 { color: var(--green-dark); margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid var(--green-mid);
}
.value-card h3 { color: var(--green-dark); margin-bottom: 0.5rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1.75rem;
}
.team-card {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
}
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
}
.team-card h3 { color: var(--green-dark); }
.team-card .role { color: var(--orange); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item .placeholder-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform var(--transition);
}
.gallery-item:hover .placeholder-img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item.large .placeholder-img { height: 465px; }

/* ── Footer ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 0.75rem; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.9rem; opacity: 0.75; transition: var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.65;
}

/* ── Background colours for placeholder images ── */
.bg-green  { background: linear-gradient(135deg, #2e6b2e, #1e3a1e); }
.bg-earth  { background: linear-gradient(135deg, #8b5e3c, #5a3a1a); }
.bg-blue   { background: linear-gradient(135deg, #2e5b8b, #1a3a5a); }
.bg-teal   { background: linear-gradient(135deg, #1a7a6b, #0f4a3e); }
.bg-purple { background: linear-gradient(135deg, #5b2e8b, #3a1a5a); }
.bg-orange { background: linear-gradient(135deg, #c96a2a, #7a3a10); }

/* ══════════════════════════════
   TOUR DETAIL PAGES
══════════════════════════════ */
.tour-detail-hero {
  background: linear-gradient(135deg, var(--green-dark), #2e6b2e);
  color: var(--white);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.tour-detail-hero.has-photo {
  background-size: cover;
  background-position: center;
}
.tour-detail-hero.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,30,15,0.82) 0%, rgba(10,30,15,0.45) 60%, rgba(10,30,15,0.2) 100%);
}
.tour-detail-hero.has-photo .container { position: relative; z-index: 1; }

/* Tour photo gallery */
.tour-gallery { margin-top: 2.5rem; }
.tour-gallery h2 { margin-bottom: 1.2rem; }
.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.tour-gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.tour-gallery-grid img:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.tour-gallery-grid img.wide {
  grid-column: span 2;
  height: 200px;
}
@media (max-width: 700px) {
  .tour-gallery-grid { grid-template-columns: 1fr 1fr; }
  .tour-gallery-grid img.wide { grid-column: span 2; }
}
.tour-detail-hero .category-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.tour-detail-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.tour-detail-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 620px; }

/* Quick facts bar */
.quick-facts {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  box-shadow: var(--shadow);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}
.fact-item { text-align: center; min-width: 80px; }
.fact-item .fact-icon  { font-size: 1.4rem; }
.fact-item .fact-value { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; margin-top: 0.2rem; }
.fact-item .fact-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

/* Two-column layout */
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.tour-main section { margin-bottom: 2.5rem; }
.tour-main h2 { color: var(--green-dark); font-size: 1.3rem; margin-bottom: 0.85rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--cream); }
.tour-main p  { margin-bottom: 0.75rem; }

/* Highlights */
.highlights-list { list-style: none; padding: 0; }
.highlights-list li { padding: 0.5rem 0; border-bottom: 1px solid #eee; color: var(--text-mid); font-size: 0.95rem; }
.highlights-list li::before { content: '✓  '; color: var(--green-light); font-weight: 700; }

/* Itinerary */
.itinerary-day {
  border-left: 3px solid var(--green-mid);
  padding: 0.6rem 0 0.6rem 1.2rem;
  margin-bottom: 0.85rem;
  position: relative;
}
.itinerary-day::before {
  content: '';
  position: absolute; left: -7px; top: 0.9rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--green-mid);
}
.itinerary-day .day-label { font-size: 0.72rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; }
.itinerary-day h4 { color: var(--green-dark); margin: 0.15rem 0 0.25rem; font-size: 0.95rem; }
.itinerary-day p  { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

/* Includes / Excludes */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* Cancellation summary box */
.cancellation-summary {
  margin-top: 2.5rem;
  border: 1px solid #e0d9cc;
  border-radius: 8px;
  overflow: hidden;
}
.cancellation-summary h3 {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  margin: 0;
}
.cancellation-summary table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
.cancellation-summary th {
  background: #f2ede3;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.55rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.cancellation-summary td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ede8dc;
  color: var(--text-mid);
}
.cancellation-summary tr:last-child td { border-bottom: none; }
.cancellation-summary tr:nth-child(even) td { background: #faf7ef; }
.cancellation-summary .policy-link {
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-light);
  display: block;
  border-top: 1px solid #e0d9cc;
  background: #faf7ef;
}
.cancellation-summary .policy-link a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.inc-exc-col h3 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.inc-exc-col ul { list-style: none; padding: 0; }
.inc-exc-col ul li { padding: 0.3rem 0; font-size: 0.88rem; color: var(--text-mid); }
.inc-col li::before { content: '✓  '; color: var(--green-light); font-weight: 700; }
.exc-col li::before { content: '✕  '; color: #d94f4f; font-weight: 700; }

/* Booking sidebar */
.booking-widget {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow);
}
.booking-widget .price-display { font-size: 2rem; font-weight: 700; color: var(--green-mid); line-height: 1; }
.booking-widget .price-display span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.booking-widget .price-note { font-size: 0.8rem; color: var(--text-light); margin: 0.35rem 0 1.25rem; }
.booking-widget .btn-block { display: block; text-align: center; width: 100%; margin-bottom: 0.75rem; }
.booking-widget .widget-meta { list-style: none; padding: 0; border-top: 1px solid #ddd; margin-top: 1.25rem; padding-top: 1.25rem; }
.booking-widget .widget-meta li { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.3rem 0; color: var(--text-mid); }
.booking-widget .widget-meta li strong { color: var(--text-dark); }

/* Responsive */
@media (max-width: 900px) {
  .tour-layout { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .quick-facts { justify-content: center; }

  /* Tablet navigation → hamburger (covers iPad portrait & Android tablets) */
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-dark);
    padding: 1.5rem;
    gap: 1rem;
  }
  .hamburger { display: flex; }

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

/* ── Responsive ── */
@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
  .hero-stats  { gap: 1.5rem; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-item.large .placeholder-img { height: 240px; }
}

/* ── Contact / Booking Page ── */
.form-success-banner {
  background: var(--green-light);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
  font-size: 1.05rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap h2 { color: var(--green-dark); margin-bottom: 0.25rem; }

.inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d0d0d0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,107,46,0.12);
}

.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23444' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }

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

.btn-submit {
  align-self: flex-start;
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: -0.5rem;
}

/* Contact Info Sidebar */
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card h3 {
  color: var(--green-dark);
  font-size: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(46,107,46,0.15);
}

.contact-detail-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}

.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-detail-item a {
  color: var(--green-mid);
  font-weight: 500;
}
.contact-detail-item a:hover { text-decoration: underline; }
.contact-detail-item span { color: var(--text-mid); font-size: 0.95rem; }

.contact-taan {
  background: var(--white);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-taan strong { color: var(--text-dark); font-size: 0.85rem; }

.contact-response-box {
  background: rgba(46,107,46,0.08);
  border-left: 3px solid var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.85rem 1rem;
}
.contact-response-box strong { font-size: 0.9rem; color: var(--green-dark); display: block; margin-bottom: 0.3rem; }
.contact-response-box p { font-size: 0.82rem; color: var(--text-mid); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btn-submit { width: 100%; text-align: center; }
}

/* ── Featured Experiences Slider ── */
.slider-section {
  position: relative;
  background: var(--green-dark);
  padding: 0;
  overflow: hidden;
}

.slider-shapes {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}
.slider-shapes::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 80%, 25% 40%, 50% 70%, 75% 30%, 100% 60%, 100% 100%, 0 100%);
}

.slider {
  position: relative;
  width: 100%;
  height: 88vh;
  height: 88svh;
  min-height: 560px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }

/* Slide background layers */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,35,20,0.82) 0%, rgba(10,35,20,0.35) 60%, transparent 100%);
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 2.5rem 0;
  width: 100%;
}

.slide-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.slide-badge.coming-soon {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.slide-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 680px;
}

.slide-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.slide-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.slide-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.slide-meta-item .meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.slide-meta-item .meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.slide-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.slide-ctas .btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
}

.slide-ctas .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
}
.slide-ctas .btn-primary:hover { background: #c96a2e; border-color: #c96a2e; }

.slide-ctas .btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.slide-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* All slides — compact consistent text size */
.slide-trek .slide-content h2,
.slide-tour .slide-content h2,
.slide-food .slide-content h2  { font-size: clamp(1.7rem, 3.5vw, 2.8rem); margin-bottom: 0.75rem; }

.slide-trek .slide-content p,
.slide-tour .slide-content p,
.slide-food .slide-content p   { font-size: clamp(0.85rem, 1.4vw, 0.98rem); margin-bottom: 1rem; }

.slide-trek .slide-badge,
.slide-tour .slide-badge,
.slide-food .slide-badge       { margin-bottom: 0.9rem; }

.slide-trek .slide-meta,
.slide-tour .slide-meta,
.slide-food .slide-meta        { margin-bottom: 1.25rem; gap: 1.2rem; }

.slide-trek .slide-ctas .btn,
.slide-tour .slide-ctas .btn,
.slide-food .slide-ctas .btn   { padding: 0.65rem 1.4rem; font-size: 0.88rem; }

/* Slide backgrounds */
.slide-trek    .slide-bg {
  background-image: url('images/pexels-urtimud-89-76108288-32261644 (1).webp');
  background-size: cover;
  background-position: center top;
}
.slide-tour    .slide-bg {
  background-image: url('images/temple.webp');
  background-size: cover;
  background-position: center center;
}
.slide-food    .slide-bg {
  background-image: url('images/jhigu-bhoye-q9TtiGa5yJQ-unsplash.webp');
  background-size: cover;
  background-position: center center;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  width: 0%;
  z-index: 10;
  transition: none;
}
.slider-progress.animating {
  width: 100%;
  transition: width 9s linear;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--orange);
  transform: scale(1.35);
}

/* Slide counter */
.slide-counter {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* Featured intro section */
.featured-intro {
  background: var(--white);
  padding: 3.5rem 0 0;
  text-align: center;
}
.featured-intro h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.featured-intro p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Below-slider tour strip */
.featured-strip {
  background: var(--white);
  padding: 2.5rem 0 4rem;
}
.featured-strip h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2rem;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1.5px solid rgba(31,107,58,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.featured-card-thumb {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.trek-thumb  { background: linear-gradient(160deg, #1a3d28, #2d5a3a); }
.tour-thumb  { background: linear-gradient(160deg, #3d2e0f, #5a4220); }
.food-thumb  { background: linear-gradient(160deg, #4a2010, #6b3318); }

.featured-card-thumb .thumb-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
}

.featured-card-body { padding: 1.25rem; }
.featured-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.featured-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.featured-card-body .card-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.75rem;
}
.featured-card-body .btn {
  font-size: 0.82rem;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .slider { height: 75vh; height: 75svh; }
  .slider-arrow { display: none; }
  .featured-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .slide-content h2 { font-size: 2rem; }
  .slide-content { padding: 78px 1.25rem 64px; }
  /* Keep hero copy bounded so the CTAs never get clipped by the slider */
  .slide-content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.1rem;
  }
  .slide-meta { gap: 0.85rem 1.25rem; margin-bottom: 1.25rem; }
  .slide-ctas { gap: 0.6rem; }
  .slide-ctas .btn { padding: 0.7rem 1.3rem; font-size: 0.85rem; }
  /* Smaller decorative wave so it doesn't cover the bottom CTA */
  .slider-shapes::before { height: 55px; }
}

/* Compact navbar on small screens so logo + switcher + hamburger all fit */
@media (max-width: 480px) {
  .lang-btn { padding: 0.25rem 0.5rem; font-size: 0.72rem; }
  .logo { font-size: 0.9rem; letter-spacing: 0.06em; gap: 0.45rem; }
  .logo-mark { width: 30px; height: 30px; }
  .navbar-inner { gap: 0.5rem; }
}
