/* ═══════════════════════════════════════════
   LESAN TOURS — INNER PAGES STYLES
   ═══════════════════════════════════════════ */

/* ─── PAGE HERO BANNER ─── */
.phero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.phero.visible .phero-bg { transform: scale(1); }
.phero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,21,9,0.82) 0%, rgba(26,21,9,0.35) 55%, rgba(26,21,9,0.65) 100%);
}
.phero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 750px;
  padding: 0 2rem;
}
.phero-content .htag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 1.2rem;
}
.phero-content .htag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-l);
}
.phero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.phero-content h1 em { font-style: italic; color: var(--gold-l); }
.phero-content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  position: absolute;
  top: 110px;
  left: 3rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb span { color: var(--gold-l); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 0.6rem; }

/* ─── CONTENT SECTIONS ─── */
.psec { padding: 5rem 0; }
.psec-alt { background: var(--bg1); }
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-intro .stag {
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.section-intro .stag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.14;
  color: var(--t1);
  margin-bottom: 1rem;
}
.section-intro h2 em { font-style: italic; color: var(--gold); }
.section-intro p {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.78;
  font-weight: 300;
}

/* ─── MOBILE MENU TOGGLE ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 300;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.35s;
}
nav.on .menu-toggle span { background: var(--gold); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(26,21,9,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold-l); }
.mobile-nav .mobile-book {
  margin-top: 1rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-nav .mobile-book:hover { background: var(--gold-l); }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top:hover { background: var(--gold-l); }

/* ─── ABOUT PAGE ─── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story-img { position: relative; }
.about-story-img img { width: 100%; height: 480px; object-fit: cover; border: 3px solid rgba(184,137,42,0.22); }
.about-story-img .story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}
.story-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
.story-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-story-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.88;
  margin-bottom: 1.4rem;
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  text-align: center;
  padding: 2rem 1.2rem;
  transition: box-shadow 0.35s, border-color 0.35s, transform 0.35s;
  cursor: pointer;
}
.team-card:hover {
  box-shadow: 0 10px 36px rgba(184,137,42,0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
  transition: border-color 0.3s;
}
.team-card:hover img { border-color: var(--gold); }
.team-card .team-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--t1);
  margin-bottom: 0.2rem;
}
.team-card .team-role {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.team-card .team-bio {
  font-size: 0.82rem;
  color: var(--t2);
  line-height: 1.65;
  font-weight: 300;
}

/* Mission values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: box-shadow 0.35s, border-color 0.35s;
}
.value-card:hover { box-shadow: 0 8px 30px rgba(184,137,42,0.1); border-color: var(--gold); }
.value-icon {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--border);
  background: var(--bg1);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background 0.3s, border-color 0.3s;
}
.value-card:hover .value-icon { background: var(--gold-pale); border-color: var(--gold); }
.value-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--t1); margin-bottom: 0.6rem; font-weight: 400; }
.value-card p { font-size: 0.85rem; color: var(--t2); line-height: 1.7; font-weight: 300; }

/* ─── DESTINATIONS PAGE ─── */
.dest-filters { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.dest-filter {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--t2);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}
.dest-filter:hover, .dest-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(184,137,42,0.18);
}
.dest-card img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.7s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card-body { padding: 1.5rem; }
.dest-card-type {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.dest-card-name { font-family: var(--serif); font-size: 1.35rem; color: var(--t1); margin-bottom: 0.4rem; }
.dest-card-desc { font-size: 0.85rem; color: var(--t2); line-height: 1.65; font-weight: 300; margin-bottom: 1rem; }
.dest-card-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: letter-spacing 0.3s;
}
.dest-card-link:hover { letter-spacing: 0.18em; }
.dest-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

/* ─── TOURS PAGE ─── */
.tour-filters { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tour-filter {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--t2);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}
.tour-filter:hover, .tour-filter.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.tour-search-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tour-search-row select, .tour-search-row input {
  background: var(--bg1);
  border: 1.5px solid var(--border);
  padding: 0.7rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--t1);
  outline: none;
  transition: border-color 0.3s;
  min-width: 160px;
}
.tour-search-row select:focus, .tour-search-row input:focus { border-color: var(--gold); }
.tour-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tour-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s, box-shadow 0.35s;
}
.tour-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(184,137,42,0.15);
}
.tour-card-img { position: relative; overflow: hidden; }
.tour-card-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.6s; }
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
.tour-card-body { padding: 1.5rem; }
.tour-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.tour-card-type { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.tour-card-days { font-size: 0.7rem; color: var(--t3); background: var(--bg1); padding: 0.2rem 0.6rem; }
.tour-card-name { font-family: var(--serif); font-size: 1.25rem; color: var(--t1); margin-bottom: 0.5rem; font-weight: 400; }
.tour-card-desc { font-size: 0.83rem; color: var(--t2); line-height: 1.66; font-weight: 300; margin-bottom: 1.2rem; }
.tour-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1.5px solid var(--border); }
.tour-card-price { font-family: var(--serif); font-size: 1.35rem; color: var(--gold); }
.tour-card-price small { font-family: var(--sans); font-size: 0.65rem; color: var(--t3); display: block; }
.tour-card-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: letter-spacing 0.3s;
}
.tour-card-link:hover { letter-spacing: 0.18em; }

/* ─── TOUR DETAIL PAGE ─── */
.tour-hero { position: relative; height: 60vh; min-height: 450px; overflow: hidden; }
.tour-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.tour-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,21,9,0.9) 0%, rgba(26,21,9,0.3) 100%); }
.tour-hero-content {
  position: absolute;
  z-index: 3;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.tour-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}
.tour-hero-content .tour-hero-meta {
  display: flex;
  gap: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tour-hero-content .tour-hero-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold-l);
}
.tour-hero-content .tour-hero-price small { font-family: var(--sans); font-size: 0.7rem; color: rgba(255,255,255,0.6); display: block; }
.tour-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.tour-main h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--t1);
  margin-bottom: 1rem;
}
.tour-main p { font-size: 0.94rem; color: var(--t2); line-height: 1.8; font-weight: 300; margin-bottom: 1.2rem; }
.itinerary { margin-top: 2.5rem; }
.itinerary-day {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.itinerary-day:first-child { padding-top: 0; }
.itinerary-day-num {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.itinerary-day-body h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--t1); margin-bottom: 0.3rem; }
.itinerary-day-body p { font-size: 0.88rem; color: var(--t2); line-height: 1.7; font-weight: 300; }
.tour-sidebar { position: sticky; top: 100px; }
.tour-sidebar-card {
  background: var(--bg1);
  border: 1.5px solid var(--border);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.tour-sidebar-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--t1);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1.5px solid var(--border);
}
.incl-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.incl-list li {
  font-size: 0.86rem;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.incl-list li::before { content: '✓'; color: var(--gold); font-weight: 600; }
.excl-list li::before { content: '✕'; color: #b88a5a; }
.tour-cta {
  display: block;
  width: 100%;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
  margin-bottom: 0.8rem;
}
.tour-cta:hover { background: var(--gold-l); }
.tour-cta-outline {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.tour-cta-outline:hover { background: var(--gold); color: #fff; }

/* ─── GALLERY PAGE ─── */
.gallery-filters { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.gallery-filter {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--t2);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-filter:hover, .gallery-filter.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-masonry .gm-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.gallery-masonry .gm-item:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(184,137,42,0.15); }
.gallery-masonry .gm-item img { width: 100%; display: block; transition: transform 0.7s; }
.gallery-masonry .gm-item:hover img { transform: scale(1.05); }
.gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,21,9,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.gm-item:hover .gm-overlay { background: rgba(26,21,9,0.4); }
.gm-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transform: scale(0);
  transition: transform 0.35s;
}
.gm-item:hover .gm-icon { transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26,21,9,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(184,137,42,0.3);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-family: var(--serif);
  font-size: 1rem;
}

/* ─── CONTACT PAGE ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info-card {
  background: var(--bg1);
  border: 1.5px solid var(--border);
  padding: 2rem;
}
.contact-info-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--t1);
  margin-bottom: 1.5rem;
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}
.contact-info-text h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t1); margin-bottom: 0.3rem; font-weight: 500; }
.contact-info-text p { font-size: 0.88rem; color: var(--t2); line-height: 1.6; }
.contact-map {
  width: 100%;
  height: 300px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* FAQ */
.faq-section { margin-top: 4rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(184,137,42,0.08); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--t1);
}
.faq-q span { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  font-size: 0.86rem;
  color: var(--t2);
  line-height: 1.7;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, margin-top 0.4s;
}
.faq-item.open .faq-a { max-height: 200px; margin-top: 0.8rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nbtn { display: none; }
  .menu-toggle { display: flex; }
  .ctr { padding: 0 1.5rem; }
  .phero { height: 45vh; min-height: 320px; }
  .breadcrumb { left: 1.5rem; top: 90px; }
  .about-story, .about-story-text, .tour-layout, .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .dest-grid, .tour-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .tour-sidebar { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dest-grid, .tour-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .tour-hero-content { left: 1rem; right: 1rem; bottom: 1.5rem; }
  .back-top { bottom: 1rem; right: 1rem; }
}

/* ─── PAGE TRANSITIONS ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── PAGE-SPECIFIC BACKGROUNDS ─── */
.phero-about { background-image: url('https://images.unsplash.com/photo-1534177616072-ef7dc120449d?w=1600&q=85'); }
.phero-dest { background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600&q=85'); }
.phero-tours { background-image: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?w=1600&q=85'); }
.phero-gallery { background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1600&q=85'); }
.phero-contact { background-image: url('https://images.unsplash.com/photo-1590523741831-ab7e8b8f9c7f?w=1600&q=85'); }

/* ─── ACTIVE NAV LINK ─── */
.nav-links a.active { color: var(--gold-l) !important; }
nav.on .nav-links a.active { color: var(--gold) !important; font-weight: 600; }
nav.on .nav-links a.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   ENHANCED POLISH
   ═══════════════════════════════════════════ */

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 9998;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── ANIMATED SECTION DIVIDER ─── */
.section-divider {
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
}
.section-divider svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* ─── STATS COUNTER ANIMATION ─── */
.stn { transition: color 0.4s; }
.stt:hover .stn { color: var(--gold-l); transform: scale(1.05); transition: transform 0.3s, color 0.3s; }
.stt { transition: background 0.3s; cursor: default; }
.stt:hover { background: var(--bg1); }

/* ─── RICHER CARD HOVER ─── */
.team-card img {
  transition: border-color 0.3s, transform 0.4s, box-shadow 0.4s;
}
.team-card:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(184,137,42,0.18);
}
.value-card { transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s, background 0.35s; }
.value-card:hover { transform: translateY(-6px); background: var(--bg1); }

/* ─── DESTINATION CARD SHINE ─── */
.dest-card { overflow: hidden; }
.dest-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  z-index: 3;
  pointer-events: none;
  transition: left 0.7s;
}
.dest-card:hover::before { left: 150%; }

/* ─── TOUR CARD ELEVATION ─── */
.tour-card {
  transition: border-color 0.35s, transform 0.4s, box-shadow 0.4s;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(184,137,42,0.2);
}

/* ─── GALLERY ITEM MAGNIFY ─── */
.gm-item { border: 1.5px solid transparent; transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s; }
.gm-item:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(184,137,42,0.18); }

/* ─── FAQ ENHANCED ─── */
.faq-item { transition: all 0.35s; }
.faq-item:hover { border-color: var(--gold); }
.faq-item.open { background: var(--bg1); border-color: var(--gold); box-shadow: 0 4px 20px rgba(184,137,42,0.08); }

/* ─── FORM FOCUS RING ─── */
.ff input:focus, .ff select:focus, .ff textarea:focus {
  box-shadow: 0 0 0 3px rgba(184,137,42,0.12);
}
.fsub {
  position: relative;
  overflow: hidden;
}
.fsub::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.fsub:active::after {
  width: 300px;
  height: 300px;
}

/* ─── BUTTON RIPPLE ─── */
.bgold, .nbtn, .abtn {
  position: relative;
  overflow: hidden;
}
.bgold::after, .nbtn::after, .abtn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.bgold:active::after, .nbtn:active::after, .abtn:active::after {
  width: 300px;
  height: 300px;
}

/* ─── SMOOTH PAGE ENTRANCE ─── */
body {
  animation: pageIn 0.6s ease-out;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── STAGGERED FADE-IN FOR GRID CHILDREN ─── */
.dest-grid .dest-card:nth-child(1) { transition-delay: 0.05s; }
.dest-grid .dest-card:nth-child(2) { transition-delay: 0.1s; }
.dest-grid .dest-card:nth-child(3) { transition-delay: 0.15s; }
.dest-grid .dest-card:nth-child(4) { transition-delay: 0.2s; }
.dest-grid .dest-card:nth-child(5) { transition-delay: 0.25s; }
.dest-grid .dest-card:nth-child(6) { transition-delay: 0.3s; }
.dest-grid .dest-card:nth-child(7) { transition-delay: 0.35s; }
.dest-grid .dest-card:nth-child(8) { transition-delay: 0.4s; }
.dest-grid .dest-card:nth-child(9) { transition-delay: 0.45s; }

.tour-grid .tour-card:nth-child(1) { transition-delay: 0.05s; }
.tour-grid .tour-card:nth-child(2) { transition-delay: 0.1s; }
.tour-grid .tour-card:nth-child(3) { transition-delay: 0.15s; }
.tour-grid .tour-card:nth-child(4) { transition-delay: 0.2s; }
.tour-grid .tour-card:nth-child(5) { transition-delay: 0.25s; }
.tour-grid .tour-card:nth-child(6) { transition-delay: 0.3s; }
.tour-grid .tour-card:nth-child(7) { transition-delay: 0.35s; }
.tour-grid .tour-card:nth-child(8) { transition-delay: 0.4s; }
.tour-grid .tour-card:nth-child(9) { transition-delay: 0.45s; }

/* ─── PULSE DOT FOR CTA ─── */
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ─── MOBILE OPTIMIZATIONS ─── */
@media (max-width: 960px) {
  .scroll-progress { height: 3px; }
  .back-top { width: 40px; height: 40px; font-size: 1rem; }
}

/* ─── PAGE TRANSITIONS ─── */
#main-content {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#main-content.page-leaving {
  opacity: 0;
  transform: translateY(4px);
}
#main-content.page-entering {
  opacity: 0;
  transform: translateY(-4px);
}
