/* ═══════════════════════════════════════
       TOKENS — LIGHT MODE
    ═══════════════════════════════════════ */
:root {
  /* Backgrounds */
  --bg: #f2f4f0;
  --bg-white: #ffffff;
  --bg-subtle: #eef1ec;

  /* Brand */
  --green: #3a6644;
  --green-mid: #4e8a5f;
  --green-lt: #6aaa7b;
  --green-pale: #e8f0eb;
  --green-dark: #1B3029;

  /* Text */
  --ink: #171f1a;
  --ink-mid: #3d4f42;
  --ink-muted: #4a554d;
  --ink-faint: #6f7972;

  /* Utility */
  --border: #dce5de;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ═══════════════════════════════════════
       RESET
    ═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--green-lt);
  border-radius: 3px;
}

/* ═══════════════════════════════════════
       STANDARD BOOTSTRAP CONTAINER SYSTEM
    ═══════════════════════════════════════ */
.container,
.tour-container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

@media (min-width: 576px) {

  .container,
  .tour-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .tour-container {
    max-width: 720px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (min-width: 992px) {

  .container,
  .tour-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .tour-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {

  .container,
  .tour-container {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {

  .container,
  .tour-container {
    max-width: 1520px;
  }
}

/* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 229, 222, 0.7);
  transition: box-shadow 0.3s;
}

#nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--green);
  color: #fff !important;
  border-radius: 100px;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(58, 102, 68, 0.28);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════
   MOBILE DRAWER NAVIGATION
═══════════════════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 28, 22, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #ffffff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(18, 28, 22, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.drawer-logo img {
  height: 28px;
  width: auto;
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.drawer-close:hover {
  background: var(--border);
  transform: rotate(90deg);
}

.drawer-close svg {
  width: 18px;
  height: 18px;
}

.drawer-content {
  flex: 1;
  padding: 32px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer-menu {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-menu li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.drawer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s, transform 0.2s;
}

.drawer-link:hover {
  color: var(--green);
  transform: translateX(4px);
}

.drawer-action {
  margin-top: auto;
  padding-top: 24px;
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--green) !important;
  color: #ffffff !important;
  border-radius: 100px;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(58, 102, 68, 0.25);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.drawer-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 102, 68, 0.32);
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.drawer-copyright {
  font-size: 14px;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════
       HERO CAROUSEL
    ═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}

.carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.carousel-slide.active img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(20, 32, 22, 0.18) 0%,
      rgba(20, 32, 22, 0.05) 40%,
      rgba(20, 32, 22, 0.72) 100%);
}

.slide-container {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
  pointer-events: none;
}

.slide-content {
  position: static;
  max-width: 640px;
  pointer-events: auto;
}

.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s 0.25s, transform 0.55s 0.25s;
}

.slide-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a8d5b5;
}

.slide-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
}

.slide-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s 0.55s, transform 0.6s 0.55s;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #fff;
  color: var(--green);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s 0.7s, transform 0.6s 0.7s;
}

.slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.slide-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}

.slide-btn:hover svg {
  transform: translateX(3px);
}

.carousel-slide.active .slide-label,
.carousel-slide.active .slide-title,
.carousel-slide.active .slide-desc,
.carousel-slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Controls Bar - Aligned to Container */
.hero-controls-bar {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.carousel-dots {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.3s, border-radius 0.3s, background 0.3s;
  border: none;
  cursor: pointer;
}

.carousel-dot.active {
  width: 26px;
  border-radius: 4px;
  background: #fff;
}

.carousel-arrows {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

/* Progress line */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  animation: hProgress 6s linear infinite;
}

@keyframes hProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
       STRIP — TRUST & VALUE
    ═══════════════════════════════════════ */
.strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 32px 0;
  position: relative;
  z-index: 10;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}

.strip-item:hover {

  transform: translateY(-2px);
}

.strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

.strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.strip-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green);
  stroke-width: 1.75;
  transition: stroke 0.2s ease;
}

.strip-content {
  display: flex;
  flex-direction: column;
}

.strip-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.strip-subtitle {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 400;
  line-height: 1.35;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
       SHARED LAYOUT
    ═══════════════════════════════════════ */
.section {
  padding: 80px 0;
}

.section-private {
  padding: 20px 0 80px;
}

.section-bg-white {
  background: var(--bg-white);
}

.section-bg-subtle {
  background: var(--bg-subtle);
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-sub {
  font-size: 16px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.65;
  max-width: 540px;
  margin-top: 12px;
}

.row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
}

.view-all:hover {
  border-color: var(--green);
  gap: 10px;
}

.view-all svg {
  width: 15px;
  height: 15px;
}

/* ═══════════════════════════════════════
       WHY WALK WITH US
    ═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.why-item {
  background: var(--bg-white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.why-item:last-child {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.why-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.04em;
}

.why-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}

.why-body {
  font-size: 15px;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
       TOUR CARDS — MATCHING IMMERSIVE TRAILS SPEC
    ═══════════════════════════════════════ */
#tours {
  background: var(--bg);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tour-card {
  background: var(--bg-white);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(58, 102, 68, 0.25);
}

/* Inset rounded image inside the card */
.tour-card-img-wrap {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.tour-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 18px;
  overflow: hidden;
  background: #171f1a;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.05);
}

.tour-card-body {
  padding: 16px 6px 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card-badge {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fa394;
  margin-bottom: 8px;
  display: none;
}

.tour-card-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}

.tour-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tour-card-title a:hover {
  color: var(--green);
}

.tour-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: #2d5538;
  margin-bottom: 14px;
}

.tour-card-location svg {
  width: 14px;
  height: 14px;
  color: #2d5538;
}

.tour-card-sep {
  height: 1px;
  background: #e2ebe4;
  margin-bottom: 14px;
}

.tour-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 400;
  margin-bottom: 14px;
}

.tour-card-date svg {
  width: 15px;
  height: 15px;
  color: #8fa394;
}

.tour-card-price {
  font-size: 15.5px;
  font-weight: 700;
  color: #2d5538;
  margin-top: auto;
}

.tour-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: #6b7e6f;
}

/* ═══════════════════════════════════════
       PRIVATE TOURS BANNER
    ═══════════════════════════════════════ */
#private {
  padding: 0 72px 80px;
}

.private-wrap {
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.private-left {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.private-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 0% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.private-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8d5b5;
  margin-bottom: 16px;
}

.private-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.private-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}

.private-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #fff;
  color: var(--green);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-white svg {
  width: 15px;
  height: 15px;
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.private-right {
  position: relative;
  overflow: hidden;
}

.private-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.private-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-dark) 0%, transparent 100%);
}

.private-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.private-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.private-feature-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.private-feature-dot svg {
  width: 14px;
  height: 14px;
  color: #a8d5b5;
}

.private-feature-text h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.private-feature-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
       DESTINATIONS
    ═══════════════════════════════════════ */
/* ═══════════════════════════════════════
       DESTINATIONS
    ═══════════════════════════════════════ */
#destinations {
  background: var(--bg-white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 32, 22, 0.82) 0%, rgba(20, 32, 22, 0.1) 55%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}

.dest-count {
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  color: #a8d5b5;
  margin-bottom: 5px;
}

.dest-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

.dest-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.25s, transform 0.25s;
}

.dest-btn svg {
  width: 15px;
  height: 15px;
}

.dest-card:hover .dest-btn {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
#testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.t-stars svg {
  width: 14px;
  height: 14px;
  color: #e8a21a;
}

.t-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 22px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--green);
  font-weight: 500;
  flex-shrink: 0;
}

.t-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.t-meta {
  font-size: 14px;
  color: var(--ink-faint);
}

#footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════
       REVEAL ANIMATIONS
    ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
}

�════════════════════ */ #footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════
       REVEAL ANIMATIONS
    ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════
   RESPONSIVE DESIGN SYSTEM
═══════════════════════════════════════ */

/* Large Tablets & Small Laptops (<= 1200px) */
@media (max-width: 1200px) {
  .slide-content {
    max-width: 560px;
  }

  .footer-grid {
    gap: 40px;
  }
}

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .section {
    padding: 64px 0;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .strip-item:nth-child(2)::after {
    display: none;
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12x;
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .dest-card {
    aspect-ratio: 3/4;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .testimonial-card:last-child {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
  }
}

/* Mobile & Small Tablets (<= 860px) */
@media (max-width: 860px) {
  #nav {
    height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .slide-container {
    bottom: 80px;
  }

  .slide-content {
    max-width: 100%;
  }

  .slide-title {
    font-size: clamp(34px, 7vw, 48px);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .why-item {
    border-radius: var(--radius-lg) !important;
    padding: 32px 28px;
  }

  .section-private {
    padding: 0 0 64px;
  }

  .private-wrap {
    grid-template-columns: 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .private-left {
    padding: 40px 28px 36px;
  }

  .private-right {
    height: 220px;
    order: -1;
    position: relative;
  }

  .private-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .private-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--green-dark) 0%, rgba(27, 48, 41, 0.25) 60%, transparent 100%);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile Devices (<= 640px) */
@media (max-width: 640px) {
  #nav {
    padding: 0;
    height: 60px;
  }

  .nav-logo img {
    height: 28px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 14px !important;
    gap: 5px;
  }

  .section {
    padding: 48px 0;
  }

  .row-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  #hero {
    height: 82vh;
    min-height: 480px;
  }

  .slide-container {
    bottom: 60px;
  }

  .slide-content {
    max-width: 100%;
  }

  .slide-label {
    padding: 5px 12px;
    font-size: 14px;
    margin-bottom: 14px;
  }

  .slide-title {
    font-size: clamp(28px, 8.5vw, 38px);
    margin-bottom: 12px;
  }

  .slide-desc {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .slide-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .carousel-dots {
    gap: 6px;
  }

  .carousel-arrows {
    gap: 8px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }

  .strip {
    padding: 20px 0;
  }

  .strip-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .strip-item:not(:last-child)::after {
    display: none;
  }

  .strip-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #private {
    padding: 0 0 48px;
  }

  .private-left {
    padding: 32px 20px 28px;
  }

  .private-title {
    font-size: clamp(26px, 7vw, 32px);
    margin-bottom: 12px;
  }

  .private-desc {
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.6;
  }

  .private-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn-white,
  .btn-ghost-white {
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }

  .private-right {
    height: 190px;
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 32px;
  }

  .dest-info {
    padding: 16px 14px;
  }

  .dest-name {
    font-size: 18px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .testimonial-card:last-child {
    grid-column: span 1;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  #footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    font-size: 14px;
  }
}

/* Extra Small Phones (<= 460px) */
@media (max-width: 460px) {
  .nav-cta {
    display: none;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
       TOUR DETAIL PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

.tour-page-wrapper {
  padding-top: 68px;
  /* Offset for fixed nav */
  background: var(--bg);
  min-height: 100vh;
}

/* Breadcrumbs */
.tour-breadcrumb-bar {
  padding: 24px 0 8px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-muted);
}

.crumb-link {
  color: var(--ink-mid);
  transition: color 0.2s ease;
}

.crumb-link:hover {
  color: var(--green);
  text-decoration: underline;
}

.crumb-sep {
  color: var(--ink-faint);
  font-size: 14px;
}

.crumb-current {
  color: var(--ink);
  font-weight: 500;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hero Title Header */
.tour-hero-header {
  padding: 10px 0 20px;
}

.tour-header-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.tour-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(58, 102, 68, 0.15);
}

.tour-header-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 500;
}

.tour-header-location svg {
  color: var(--green);
}

.tour-header-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-mid);
}

.tour-header-rating svg {
  color: #e5a93c;
}

.tour-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.tour-hero-tagline {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--ink-mid);
  max-width: 860px;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Quick Specs Ribbon */
.tour-specs-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.tour-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tour-spec-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: var(--bg-subtle);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-spec-icon svg {
  width: 20px;
  height: 20px;
}

.spec-label {
  display: block;
  font-size: 14px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 2px;
}

.spec-val {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
}

/* Main Layout Grid - Booking Card Beside Gallery */
.tour-main-layout {
  padding: 14px 0 60px;
}

.tour-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: start;
}

/* Gallery Section - Controls Below Large Image */
.tour-gallery-section {
  padding: 6px 0 24px;
}

.gallery-showcase {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 6px;
}

.gallery-main-full {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #171f1a;
}

.gallery-main-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.gallery-nav-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.gallery-arrow-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(23, 31, 26, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-arrow-btn:hover {
  background: var(--green);
  transform: scale(1.08);
}

.gallery-arrow-btn svg {
  width: 20px;
  height: 20px;
}

.gallery-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 4px 2px;
}

.gallery-thumbs-row {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px;
}

.gallery-thumb-btn {
  position: relative;
  width: 96px;
  height: 64px;
  min-width: 96px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  /* border: 2px solid transparent; */
  background: #171f1a;
  padding: 0;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  opacity: 0.72;
}

.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumb-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.gallery-thumb-btn.active {
  opacity: 1;
  border: 2px solid var(--green);
  /* box-shadow: 0 0 0 3px rgba(58, 102, 68, 0.32), 0 4px 12px rgba(0, 0, 0, 0.15); */
  transform: scale(1.04);
}

.thumb-active-ring {
  display: none;
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px #ffffff;
}

.gallery-thumb-btn.active .thumb-active-ring {
  display: block;
}

.gallery-counter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--bg-white);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Main Layout Grid (Reduced Gaps) */
.tour-main-layout {
  padding: 14px 0 60px;
}

.tour-layout-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 28px;
  align-items: start;
}

/* Content Blocks (Reduced Gaps) */
.tour-content-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  /* Reduced gap between cards */
}

.tour-content-block {
  background: var(--bg-white);
  padding: 26px 28px;
  /* Reduced card padding */
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.block-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.block-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.block-header-flex .block-title {
  margin-bottom: 0;
}

.block-sub-badge {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 100px;
}

.tour-lead-p {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 400;
}

.tour-narrative-box {
  background: var(--bg-subtle);
  border-left: 3px solid var(--green);
  padding: 18px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-bullet {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.highlight-bullet svg {
  width: 13px;
  height: 13px;
}

.highlight-text {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 6px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  position: relative;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 3px var(--green-pale);
}

.timeline-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin: 4px 0;
  min-height: 42px;
}

.timeline-step:last-child .timeline-line {
  display: none;
}

.timeline-content {
  padding-bottom: 22px;
}

.timeline-time-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.timeline-step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.timeline-step-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.58;
}

/* Inclusions Grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.incl-card {
  border-radius: var(--radius-sm);
  padding: 20px 18px;
}

.incl-card.included {
  background: rgba(58, 102, 68, 0.04);
  border: 1px solid rgba(58, 102, 68, 0.18);
}

.incl-card.excluded {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
}

.incl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.incl-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incl-icon.check {
  background: var(--green);
  color: #fff;
}

.incl-icon.cross {
  background: var(--ink-faint);
  color: #fff;
}

.incl-icon svg {
  width: 16px;
  height: 16px;
}

.incl-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.incl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.48;
  color: var(--ink-mid);
}

.incl-card.included .incl-list svg {
  color: var(--green);
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 2px;
}

.incl-card.excluded .incl-list svg {
  color: var(--ink-faint);
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 2px;
}

/* Guide Profile Card */
.guide-profile-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--bg-subtle);
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.guide-avatar-wrap {
  text-align: center;
}

.guide-avatar-wrap img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 6px;
}

.guide-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 2px 7px;
  border-radius: 100px;
}

.guide-badge-verified svg {
  width: 12px;
  height: 12px;
  color: var(--green);
}

.guide-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 3px;
}

.guide-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.guide-bio {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* Know Before You Go */
.know-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.know-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.know-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.know-head {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.know-txt {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.45;
}

.tips-box {
  background: #fdfaf3;
  border: 1px solid #f2e7c9;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.tips-title {
  font-size: 14px;
  font-weight: 600;
  color: #7d5b12;
  margin-bottom: 8px;
}

.tips-list {
  padding-left: 18px;
  font-size: 14px;
  color: #5c4718;
  line-height: 1.55;
}

/* FAQs Accordion */
.tour-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-white);
  transition: all 0.2s ease;
}

.accordion-item.active {
  border-color: var(--green-lt);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  gap: 14px;
}

.accordion-header:hover {
  background: var(--bg-subtle);
}

.accordion-arrow {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--ink-muted);
  transition: transform 0.25s ease;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--green);
}

.accordion-body {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.62;
  border-top: 1px solid transparent;
}

.accordion-item.active .accordion-body {
  display: block;
  border-top-color: var(--bg-subtle);
  padding-top: 12px;
}

/* ══════════════════ STICKY BOOKING CARD ══════════════════ */
.booking-widget-card {
  position: sticky;
  top: 96px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
}

.widget-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.price-from-label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.price-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.price-per {
  font-size: 14px;
  color: var(--ink-muted);
  margin-left: 4px;
}

.price-original-wrap {
  text-align: right;
}

.price-strike {
  display: block;
  font-size: 14px;
  text-decoration: line-through;
  color: var(--ink-faint);
  margin-bottom: 2px;
}

.price-save-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #276749;
  background: #c6f6d5;
  padding: 2px 8px;
  border-radius: 100px;
}

.widget-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.widget-field-group {
  margin-bottom: 18px;
}

.widget-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.select-wrapper {
  position: relative;
}

.widget-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 44px 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.widget-select:focus {
  border-color: var(--green);
  background: #fff;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--ink-muted);
  pointer-events: none;
}

.slot-alert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #9b2c2c;
  font-weight: 600;
  margin-top: 6px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e53e3e;
  display: inline-block;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(229, 62, 62, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
  }
}

.guest-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.guest-limit-note {
  font-size: 14px;
  color: var(--ink-muted);
}

.guest-counter-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.counter-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.guest-count-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

/* Total Box */
.widget-total-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.total-amount-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  color: var(--green-dark);
}

.total-tax-note {
  display: block;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.35;
}

/* Button Stack */
.widget-action-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.btn-book-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #ffffff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  /* box-shadow: 0 4px 12px rgba(58, 102, 68, 0.25); */
}

.btn-book-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-book-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 16px rgba(27, 48, 41, 0.35);
}

.btn-book-primary:hover svg {
  transform: translateX(4px);
}

.btn-whatsapp-inquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #128c7e;
  border: 1px solid #128c7e;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-whatsapp-inquire:hover {
  background: #e7f7f4;
}

/* Trust Pill List */
.widget-trust-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
}

.trust-pill svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: var(--green);
}

/* ══════════════════ RELATED EXPERIENCES (EQUAL PADDING) ══════════════════ */
.tour-related-section {
  padding: 72px 0;
  /* Exact same padding top and bottom */
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}

.tour-card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: transform 0.2s ease;
}

.tour-card-cta-link:hover {
  transform: translateX(3px);
  text-decoration: underline;
}

/* ══════════════════ MOBILE BOTTOM BAR ══════════════════ */
.mobile-bottom-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: space-between;
}

.m-price-label {
  font-size: 14px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.m-price-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.m-btn-book {
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(58, 102, 68, 0.3);
}

/* ══════════════════ BOOKING MODAL ══════════════════ */
.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(23, 31, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.booking-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.booking-modal-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.booking-modal-box::-webkit-scrollbar {
  width: 5px;
}

.booking-modal-box::-webkit-scrollbar-track {
  background: transparent;
  margin: 16px 0;
}

.booking-modal-box::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}

.booking-modal-box::-webkit-scrollbar-thumb:hover {
  background-color: #94a3b8;
}

.booking-modal-overlay.open .booking-modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s ease;
}

.modal-close-btn svg {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
}

.modal-close-btn:hover {
  background: #e2e8e3;
  color: var(--ink);
  border-color: #cbd5e1;
}

.modal-header {
  margin-bottom: 14px;
  padding-right: 36px;
}

.modal-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.modal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.4;
}

.modal-summary-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.modal-summary-pill strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
}

.modal-summary-pill span {
  font-size: 13px;
  color: var(--ink-muted);
}

.modal-summary-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--green-dark);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.form-input {
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-input:focus {
  border-color: var(--green);
  background: #ffffff;
}

.modal-submit-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(58, 102, 68, 0.25);
  transition: background 0.2s ease;
  cursor: pointer;
  border: none;
}

.modal-submit-btn:hover {
  background: var(--green-dark);
}

.modal-safe-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 12px;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}

.modal-safe-text svg {
  color: var(--green);
  min-width: 14px;
}

/* ══════════════════ QR PAYMENT STEP STYLES ══════════════════ */
.step-progress-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.step-indicator-pill {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 100px;
  background: #e6f4ea;
  color: var(--green-dark);
}

.qr-payment-box {
  background: #fafaf8;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px;
  text-align: center;
  margin-bottom: 14px;
}

.qr-img-frame {
  display: inline-block;
  background: #ffffff;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  margin-bottom: 8px;
}

.qr-img-frame img {
  width: 140px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.upi-id-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1px dashed #b7dbbf;
  border-radius: 8px;
  padding: 8px 12px;
  margin: 10px auto;
  max-width: 380px;
}

.upi-id-text {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  font-family: monospace;
}

.btn-copy-upi {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-upi:hover {
  background: var(--green);
  color: #fff;
}

.modal-actions-2col {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.btn-modal-back {
  flex: 1;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--ink-mid);
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-back:hover {
  background: var(--bg-subtle);
  color: var(--ink);
}

.receipt-summary-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: left;
  margin: 14px 0;
  font-size: 14px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f1f3f4;
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-label {
  color: var(--ink-muted);
}

.receipt-val {
  font-weight: 600;
  color: var(--ink);
}

.status-badge-pending {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff8e1;
  color: #b78103;
  border: 1px solid #ffe082;
  font-size: 12.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

/* ══════════════════ RESPONSIVE BREAKPOINTS (TOUR PAGE) ══════════════════ */

@media (max-width: 1024px) {
  .tour-layout-grid {
    grid-template-columns: 1fr 340px;
    gap: 24px;
  }

  .tour-specs-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 860px) {
  .gallery-main-full {
    height: 340px;
  }

  .gallery-thumb-btn {
    width: 80px;
    height: 54px;
    min-width: 80px;
  }

  .tour-layout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booking-widget-card {
    position: static;
  }

  .mobile-bottom-booking-bar {
    display: flex;
  }

  .tour-main-layout {
    padding-bottom: 90px;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .guide-profile-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guide-avatar-wrap {
    margin: 0 auto;
  }

  .know-grid {
    grid-template-columns: 1fr;
  }

  .tour-related-section {
    padding: 48px 0;
  }
}

@media (max-width: 600px) {
  .tour-content-block {
    padding: 20px 16px;
  }

  .gallery-main-full {
    height: 250px;
  }

  .gallery-thumb-btn {
    width: 68px;
    height: 48px;
    min-width: 68px;
  }

  .booking-modal-box {
    padding: 24px 16px;
  }
}