/* ═══════════════════════════════════════════
   ITINERARY — Mountain Journey
   ═══════════════════════════════════════════ */

/* ─── SECTION WRAPPER ─── */
.itinerary-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 0 0;
  background: #0a1520;
}

/* ─── INLINE OVERRIDES ─── */
.itin-desc { color: rgba(255,255,255,0.7); }

/* ─── PARALLAX MOUNTAIN BACKGROUND ─── */
.itin-mountains {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.itin-sky {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    #0a1018 0%,
    #0d1f2d 20%,
    #1a3040 45%,
    #2a4a5a 65%,
    #3a6a5a 80%,
    #2d5a3d 100%
  );
}

/* Clouds */
.itin-cloud {
  position: absolute;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  filter: blur(18px);
  will-change: transform;
}
.itin-cloud-1 { width: 380px; height: 60px; top: 12%; left: -5%; animation: cloudDrift 28s linear infinite; }
.itin-cloud-2 { width: 260px; height: 45px; top: 20%; left: 30%; animation: cloudDrift 38s linear infinite 8s; opacity: 0.7; }
.itin-cloud-3 { width: 320px; height: 55px; top: 16%; left: 65%; animation: cloudDrift 32s linear infinite 4s; }
@keyframes cloudDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(120vw); }
}

/* Mountain ranges */
.itin-range {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  will-change: transform;
}
.itin-range-far {
  height: 55%;
  background: #1a2e20;
  clip-path: polygon(
    0% 100%, 0% 55%, 5% 38%, 10% 45%, 16% 20%, 22% 35%, 28% 10%,
    34% 28%, 40% 15%, 46% 32%, 52% 8%, 58% 25%, 64% 12%, 70% 30%,
    76% 18%, 82% 35%, 88% 22%, 94% 40%, 100% 28%, 100% 100%
  );
}
.itin-range-mid {
  height: 42%;
  background: #1e3a2a;
  clip-path: polygon(
    0% 100%, 0% 60%, 6% 42%, 13% 55%, 19% 30%, 26% 48%, 33% 22%,
    39% 40%, 46% 28%, 53% 45%, 60% 18%, 67% 38%, 73% 25%, 80% 44%,
    86% 30%, 92% 50%, 100% 35%, 100% 100%
  );
}
.itin-range-near {
  height: 28%;
  background: #243d2c;
  clip-path: polygon(
    0% 100%, 0% 65%, 8% 48%, 16% 62%, 24% 38%, 32% 55%, 40% 35%,
    48% 58%, 56% 40%, 64% 60%, 72% 42%, 80% 62%, 88% 45%, 96% 65%, 100% 52%, 100% 100%
  );
}

/* Silhouette treeline at bottom */
.itin-trees {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: #1a2e20;
  clip-path: polygon(
    0 100%, 0 60%,
    2% 40%, 4% 60%, 5% 30%, 7% 60%, 8% 45%, 10% 60%,
    11% 35%, 13% 60%, 14% 28%, 16% 60%, 17% 42%, 19% 60%,
    20% 33%, 22% 60%, 23% 22%, 25% 60%, 26% 38%, 28% 60%,
    30% 28%, 32% 60%, 33% 18%, 35% 60%, 36% 32%, 38% 60%,
    40% 25%, 42% 60%, 43% 15%, 45% 60%, 46% 30%, 48% 60%,
    50% 22%, 52% 60%, 53% 12%, 55% 60%, 56% 28%, 58% 60%,
    60% 20%, 62% 60%, 63% 10%, 65% 60%, 66% 25%, 68% 60%,
    70% 18%, 72% 60%, 73% 8%, 75% 60%, 76% 22%, 78% 60%,
    80% 15%, 82% 60%, 83% 30%, 85% 60%, 87% 20%, 89% 60%,
    91% 35%, 93% 60%, 95% 25%, 97% 60%, 100% 40%, 100% 100%
  );
}

/* ─── ROAD + CAR ─── */
.itin-road-wrap {
  position: relative;
  height: 100px;
  margin-bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.itin-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 42px;
  background: #1a1a1a;
  border-top: 3px solid #333;
  border-bottom: 3px solid #333;
}

.road-dashes {
  position: absolute;
  top: 50%; left: 0;
  width: 200%;
  height: 4px;
  margin-top: -2px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 30px,
    #c9a84c 30px, #c9a84c 60px
  );
  animation: roadScroll 0.6s linear infinite;
  will-change: transform;
}
@keyframes roadScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-60px); }
}

.itin-car {
  position: absolute;
  bottom: 42px;
  left: 5%;
  width: 110px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  animation: carBounce 0.25s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes carBounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-2px); }
}
.itin-car svg { width: 110px; height: auto; display: block; }

/* Exhaust puffs */
.car-exhaust {
  position: absolute;
  left: -8px;
  top: 8px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.car-exhaust span {
  display: block;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  will-change: transform, opacity;
}
.car-exhaust span:nth-child(1) { width: 8px;  height: 8px;  animation: puff 1s ease-out infinite 0s; }
.car-exhaust span:nth-child(2) { width: 12px; height: 12px; animation: puff 1s ease-out infinite 0.3s; }
.car-exhaust span:nth-child(3) { width: 16px; height: 16px; animation: puff 1s ease-out infinite 0.6s; }
@keyframes puff {
  0%   { transform: translateX(0)    scale(1);   opacity: 0.7; }
  100% { transform: translateX(-28px) scale(2.2); opacity: 0; }
}

/* ─── CONTENT WRAPPER ─── */
.itin-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ─── JOURNEY PATH ─── */
.journey-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

/* ─── STOP ─── */
.journey-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.2,0.64,1);
}
.journey-stop.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PIN */
.stop-pin {
  position: relative;
  width: 48px; height: 48px;
  flex-shrink: 0;
  margin-bottom: 12px;
  z-index: 3;
}
.pin-pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  animation: pinRing 2.5s ease-out infinite;
  will-change: transform, opacity;
}
@keyframes pinRing {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2);   opacity: 0; }
}
.pin-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #8b5e3c);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.journey-stop:hover .pin-dot {
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(201,168,76,0.6);
}
.stop-start .pin-dot,
.stop-end   .pin-dot {
  background: linear-gradient(135deg, #1e3a2f, #2d5a3d);
  box-shadow: 0 4px 20px rgba(30,58,47,0.5);
}

/* CONNECTOR LINE */
.stop-connector {
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}
.connector-line {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.connector-progress {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #c9a84c, #e8c97a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease 0.3s;
  border-radius: 2px;
}
.journey-stop.line-drawn .connector-progress { transform: scaleX(1); }

.connector-distance {
  margin-top: 6px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.connector-distance i { color: var(--gold, #c9a84c); font-size: 0.6rem; }

/* CARD */
.stop-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 0 0 20px;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s, border-color 0.35s, transform 0.4s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s;
  cursor: pointer;
}
.stop-card:hover,
.journey-stop.active .stop-card {
  background: rgba(255,255,255,0.13);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}

.stop-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 8px;
}
.stop-number {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
}
.stop-time {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 5px;
}
.stop-time i { color: #c9a84c; }

.stop-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  padding: 0 16px 4px;
  line-height: 1.2;
}
.stop-location {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  padding: 0 16px 10px;
  display: flex; align-items: center; gap: 5px;
}
.stop-location i { color: #c9a84c; font-size: 0.65rem; }
.stop-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  padding: 0 16px 12px;
  line-height: 1.6;
}
.stop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px;
}
.stop-tags span {
  font-size: 0.65rem;
  background: rgba(201,168,76,0.15);
  color: #e8c97a;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 4px 10px;
  display: flex; align-items: center; gap: 5px;
  transition: background 0.25s, border-color 0.25s;
}
.stop-card:hover .stop-tags span,
.journey-stop.active .stop-tags span {
  background: rgba(201,168,76,0.25);
  border-color: rgba(201,168,76,0.5);
}
.stop-tags i { font-size: 0.6rem; }

/* ─── MINI ANIMATED SCENES ─── */
.stop-scene {
  height: 110px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

/* --- Surya Inn scene --- */
.stop-scene-surya {
  background: linear-gradient(180deg, #0d1f30 0%, #1e3a2f 60%, #243d2c 100%);
}
.stop-scene-surya .scene-sun {
  position: absolute; top: 10px; right: 20px;
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle, #f0e68c, #c9a84c);
  box-shadow: 0 0 20px rgba(240,230,140,0.6);
  animation: sunRise 4s ease-out forwards;
  will-change: transform, opacity;
}
@keyframes sunRise {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.stop-scene-surya .scene-building {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 50px;
  background: #f0f0f0;
  border-radius: 4px 4px 0 0;
}
.stop-scene-surya .scene-building::before {
  content: '';
  position: absolute; top: -12px; left: 5px; right: 5px; height: 14px;
  background: #e0e0e0;
  border-radius: 3px 3px 0 0;
}
.stop-scene-surya .scene-building::after {
  content: '';
  position: absolute; top: 6px; left: 8px;
  width: 44px; height: 22px;
  background: rgba(168,216,234,0.6);
  border-radius: 2px;
}
.stop-scene-surya .scene-tree-1 {
  position: absolute; bottom: 16px; left: 14px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 34px solid #1e4a28;
}
.stop-scene-surya .scene-tree-2 {
  position: absolute; bottom: 16px; right: 14px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 28px solid #1e4a28;
}

/* --- Bhimtal lake scene --- */
.stop-scene-bhimtal {
  background: linear-gradient(180deg, #0d2030 0%, #1a4060 40%, #3a7a8e 70%, #2a5a6a 100%);
}
.stop-scene-bhimtal .scene-lake {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(180deg, #3a8aaa, #1e5a6a);
  border-radius: 50% 50% 0 0 / 20px 20px 0 0;
}
.stop-scene-bhimtal .scene-island {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 14px;
  background: #2d5a3d;
  border-radius: 50%;
}
.stop-scene-bhimtal .scene-boat {
  position: absolute; bottom: 30px; left: 30%;
  width: 18px; height: 6px;
  background: #c9a84c;
  border-radius: 0 0 6px 6px;
  animation: boatDrift 4s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes boatDrift {
  from { transform: translateX(0) rotate(-1deg); }
  to   { transform: translateX(8px) rotate(1deg); }
}
.stop-scene-bhimtal .scene-mountain-l {
  position: absolute; bottom: 36px; left: -5px;
  width: 0; height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 55px solid #1a3a4a;
}
.stop-scene-bhimtal .scene-mountain-r {
  position: absolute; bottom: 36px; right: -5px;
  width: 0; height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 48px solid #1e3a4a;
}
.stop-scene-bhimtal .scene-ripple {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  animation: rippleOut 2s ease-out infinite;
  will-change: transform, opacity;
}
@keyframes rippleOut {
  from { transform: translateX(-50%) scale(1);   opacity: 0.7; }
  to   { transform: translateX(-50%) scale(2.5); opacity: 0; }
}

/* --- Naukuchiatal scene --- */
.stop-scene-nauk {
  background: linear-gradient(180deg, #0a1a28 0%, #1a3a50 40%, #2a5a6a 70%, #1e4a3a 100%);
}
.stop-scene-nauk .scene-lake {
  position: absolute; bottom: 0; left: 0; right: 0; height: 35px;
  background: linear-gradient(180deg, #2a6a8a, #1a4a5a);
}
.stop-scene-nauk .scene-mountain-l {
  position: absolute; bottom: 32px; left: 0;
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 65px solid #1a2e3a;
}
.stop-scene-nauk .scene-mountain-r {
  position: absolute; bottom: 32px; right: 0;
  width: 0; height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 58px solid #1e2e3a;
}
.stop-scene-nauk .scene-mountain-c {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 52px solid #243a4a;
}
.stop-scene-nauk .scene-forest-l {
  position: absolute; bottom: 32px; left: 0; width: 35px; height: 20px;
  background: #1e4a2a;
  clip-path: polygon(0 100%,50% 0%,100% 100%);
}
.stop-scene-nauk .scene-forest-r {
  position: absolute; bottom: 32px; right: 0; width: 35px; height: 20px;
  background: #1e4a2a;
  clip-path: polygon(0 100%,50% 0%,100% 100%);
}
.stop-scene-nauk .scene-bird-1,
.stop-scene-nauk .scene-bird-2 { position: absolute; }
.stop-scene-nauk .scene-bird-1 { top: 18px; left: 30%; animation: birdFly 5s linear infinite; }
.stop-scene-nauk .scene-bird-2 { top: 28px; left: 55%; animation: birdFly 7s linear infinite 2s; }

/* --- Nainital scene --- */
.stop-scene-nainital {
  background: linear-gradient(180deg, #0d1520 0%, #1a2840 40%, #2a4a6a 65%, #1a3a5a 100%);
}
.stop-scene-nainital .scene-lake {
  position: absolute; bottom: 0; left: 0; right: 0; height: 38px;
  background: linear-gradient(180deg, #2a5a8a, #1a3a6a);
}
.stop-scene-nainital .scene-mountain-l {
  position: absolute; bottom: 35px; left: -8px;
  width: 0; height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-bottom: 70px solid #1a2a3a;
}
.stop-scene-nainital .scene-mountain-r {
  position: absolute; bottom: 35px; right: -8px;
  width: 0; height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-bottom: 70px solid #1e2a3a;
}
.stop-scene-nainital .scene-mall-road {
  position: absolute; bottom: 35px; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(90deg, #2a3a4a 0px, #2a3a4a 6px, #1a2a3a 6px, #1a2a3a 12px);
}
.stop-scene-nainital .scene-boat {
  position: absolute; bottom: 40px; left: 25%;
  width: 16px; height: 5px;
  background: #8b5e3c;
  border-radius: 0 0 4px 4px;
  animation: boatDrift 3.5s ease-in-out infinite alternate;
}
.stop-scene-nainital .scene-boat-2 {
  left: 60%; animation-delay: 1s;
  background: #c9a84c;
}
.stop-scene-nainital .scene-light-1,
.stop-scene-nainital .scene-light-2 {
  position: absolute; width: 3px; height: 3px;
  border-radius: 50%; background: #f0e68c;
  animation: twinkleLight 1.5s ease-in-out infinite alternate;
}
.stop-scene-nainital .scene-light-1 { top: 30px; left: 40%; }
.stop-scene-nainital .scene-light-2 { top: 25px; left: 65%; animation-delay: 0.7s; }
@keyframes twinkleLight {
  from { opacity: 0.3; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.5); }
}

/* --- Temple (Neem Karoli) scene --- */
.stop-scene-temple {
  background: linear-gradient(180deg, #1a0d05 0%, #3a1a08 40%, #5a3010 65%, #2d1808 100%);
}
.stop-scene-temple .scene-temple-base {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 36px;
  background: #d4a848;
  border-radius: 2px;
}
.stop-scene-temple .scene-temple-spire {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 28px solid #c9a84c;
}
.stop-scene-temple .scene-temple-flag {
  position: absolute; bottom: 68px; left: 50%; margin-left: -1px;
  width: 2px; height: 14px;
  background: #8b5e3c;
}
.stop-scene-temple .scene-temple-flag::after {
  content: '';
  position: absolute; top: 0; left: 2px;
  width: 10px; height: 7px;
  background: #c9a84c;
  animation: flagWave 1.5s ease-in-out infinite alternate;
  transform-origin: left;
  will-change: transform;
}
@keyframes flagWave {
  from { transform: skewY(-5deg); }
  to   { transform: skewY(5deg); }
}
.stop-scene-temple .scene-temple-steps {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 6px;
  background: #b89038;
  border-radius: 1px;
}
.stop-scene-temple .scene-tree-1 {
  position: absolute; bottom: 8px; left: 10px;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 30px solid #2d5a20;
}
.stop-scene-temple .scene-tree-2 {
  position: absolute; bottom: 8px; right: 10px;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 30px solid #2d5a20;
}
.stop-scene-temple .scene-diya-1,
.stop-scene-temple .scene-diya-2,
.stop-scene-temple .scene-diya-3 {
  position: absolute;
  width: 6px; height: 4px;
  background: #ff9900;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 0 8px rgba(255,153,0,0.8);
  animation: diyaFlicker 1.2s ease-in-out infinite alternate;
  will-change: opacity;
}
.stop-scene-temple .scene-diya-1 { bottom: 10px; left: 22%; }
.stop-scene-temple .scene-diya-2 { bottom: 10px; left: 47%; animation-delay: 0.4s; }
.stop-scene-temple .scene-diya-3 { bottom: 10px; right: 22%; animation-delay: 0.8s; }
@keyframes diyaFlicker {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.3); }
}
.stop-scene-temple .scene-petal-1,
.stop-scene-temple .scene-petal-2,
.stop-scene-temple .scene-petal-3 {
  position: absolute;
  width: 5px; height: 7px;
  border-radius: 50% 50% 0 50%;
  background: #ff6b35;
  animation: petalFall 3s linear infinite;
  will-change: transform, opacity;
}
.stop-scene-temple .scene-petal-1 { top: 5px;  left: 35%; animation-delay: 0s; }
.stop-scene-temple .scene-petal-2 { top: 5px;  left: 55%; animation-delay: 1s; }
.stop-scene-temple .scene-petal-3 { top: 5px;  left: 45%; animation-delay: 2s; }
@keyframes petalFall {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 1; }
  100% { transform: translateY(80px) rotate(180deg); opacity: 0; }
}

/* --- Sattal scene --- */
.stop-scene-sattal {
  background: linear-gradient(180deg, #1a0d20 0%, #2a1a40 30%, #3a2a5a 55%, #1a3a2a 100%);
}
.stop-scene-sattal .scene-lake {
  position: absolute; bottom: 0; left: 0; right: 0; height: 35px;
  background: linear-gradient(180deg, #2a3a6a, #1a2a4a);
}
.stop-scene-sattal .scene-mountain-l {
  position: absolute; bottom: 32px; left: -5px;
  width: 0; height: 0;
  border-left: 48px solid transparent;
  border-right: 48px solid transparent;
  border-bottom: 62px solid #1a1a2a;
}
.stop-scene-sattal .scene-mountain-r {
  position: absolute; bottom: 32px; right: -5px;
  width: 0; height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-bottom: 55px solid #1e1e2a;
}
.stop-scene-sattal .scene-forest-l {
  position: absolute; bottom: 32px; left: 0; width: 40px; height: 22px;
  background: #1e4a28;
  clip-path: polygon(0 100%,50% 0%,100% 100%);
}
.stop-scene-sattal .scene-forest-r {
  position: absolute; bottom: 32px; right: 0; width: 40px; height: 22px;
  background: #1e4a28;
  clip-path: polygon(0 100%,50% 0%,100% 100%);
}
.stop-scene-sattal .scene-bird-1,
.stop-scene-sattal .scene-bird-2,
.stop-scene-sattal .scene-bird-3 { position: absolute; }
.stop-scene-sattal .scene-bird-1 { top: 15px; left: 20%; animation: birdFly 4s linear infinite; }
.stop-scene-sattal .scene-bird-2 { top: 22px; left: 45%; animation: birdFly 6s linear infinite 1s; }
.stop-scene-sattal .scene-bird-3 { top: 12px; left: 70%; animation: birdFly 5s linear infinite 2s; }
.stop-scene-sattal .scene-sunset-glow {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 35px;
  background: radial-gradient(ellipse, rgba(255,120,30,0.35) 0%, transparent 70%);
}

/* Bird SVG shape */
.scene-bird-1::before, .scene-bird-2::before, .scene-bird-3::before,
.stop-scene-nauk .scene-bird-1::before, .stop-scene-nauk .scene-bird-2::before {
  content: '𓅓';
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}
@keyframes birdFly {
  from { transform: translateX(-30px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  to   { transform: translateX(140px); opacity: 0; }
}

/* --- Bonfire (End) scene --- */
.stop-scene-bonfire {
  background: linear-gradient(180deg, #050810 0%, #0a1020 50%, #0d1815 100%);
}
.stop-scene-bonfire .scene-night-sky {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #1a0d05 0%, transparent 60%);
}
.stop-scene-bonfire .scene-star {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: starTwinkle 2s ease-in-out infinite alternate;
  will-change: opacity;
}
.stop-scene-bonfire .s1 { width: 2px; height: 2px; top: 8px;  left: 15%; animation-delay: 0s; }
.stop-scene-bonfire .s2 { width: 3px; height: 3px; top: 15px; left: 30%; animation-delay: 0.4s; }
.stop-scene-bonfire .s3 { width: 2px; height: 2px; top: 6px;  left: 50%; animation-delay: 0.8s; }
.stop-scene-bonfire .s4 { width: 2px; height: 2px; top: 20px; left: 65%; animation-delay: 1.2s; }
.stop-scene-bonfire .s5 { width: 3px; height: 3px; top: 10px; left: 78%; animation-delay: 0.2s; }
.stop-scene-bonfire .s6 { width: 2px; height: 2px; top: 18px; left: 88%; animation-delay: 1.6s; }
@keyframes starTwinkle {
  from { opacity: 0.3; }
  to   { opacity: 1; }
}
.stop-scene-bonfire .scene-bonfire-base {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 8px;
  background: #5a3010;
  border-radius: 3px;
}
.stop-scene-bonfire .scene-flame {
  position: absolute; bottom: 18px; left: 50%;
  transform-origin: bottom center;
  will-change: transform, opacity;
}
.stop-scene-bonfire .f1 {
  width: 10px; height: 28px;
  margin-left: -5px;
  background: linear-gradient(to top, #ff6600, #ffcc00, rgba(255,200,0,0));
  border-radius: 50% 50% 10% 10%;
  animation: flameDance 0.5s ease-in-out infinite alternate;
}
.stop-scene-bonfire .f2 {
  width: 14px; height: 22px;
  margin-left: -8px;
  background: linear-gradient(to top, #ff4400, #ff9900, rgba(255,150,0,0));
  border-radius: 50% 50% 10% 10%;
  animation: flameDance 0.4s ease-in-out infinite alternate 0.1s;
}
.stop-scene-bonfire .f3 {
  width: 8px; height: 18px;
  margin-left: -2px;
  background: linear-gradient(to top, #ff8800, #ffee00, rgba(255,240,0,0));
  border-radius: 50% 50% 10% 10%;
  animation: flameDance 0.6s ease-in-out infinite alternate 0.2s;
}
@keyframes flameDance {
  from { transform: scaleX(1)   scaleY(1)   skewX(-3deg); }
  to   { transform: scaleX(0.8) scaleY(1.15) skewX(3deg); }
}
.stop-scene-bonfire .scene-ember {
  position: absolute; bottom: 20px; left: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #ffcc00;
  will-change: transform, opacity;
}
.stop-scene-bonfire .e1 { animation: emberRise 1.8s ease-out infinite 0s; }
.stop-scene-bonfire .e2 { animation: emberRise 1.8s ease-out infinite 0.6s; margin-left: 5px; }
.stop-scene-bonfire .e3 { animation: emberRise 1.8s ease-out infinite 1.2s; margin-left: -5px; }
@keyframes emberRise {
  0%   { transform: translate(0, 0)          scale(1);   opacity: 1; }
  100% { transform: translate(var(--ex,6px), -50px) scale(0); opacity: 0; }
}
.stop-scene-bonfire .e1 { --ex:  6px; }
.stop-scene-bonfire .e2 { --ex: -4px; }
.stop-scene-bonfire .e3 { --ex:  10px; }

/* ─── SUMMARY BAR ─── */
.itin-summary {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.itin-summary-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
}
.summary-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px; text-align: center;
}
.summary-item i   { font-size: 1.3rem; color: #c9a84c; margin-bottom: 4px; }
.summary-item strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; line-height: 1; }
.summary-item span   { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .journey-path { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stop-connector { display: none; }
}
@media (max-width: 640px) {
  .journey-path { grid-template-columns: 1fr; gap: 24px; }
  .itin-road-wrap { display: none; }
  .itin-summary-inner { gap: 28px; }
  .itin-content { padding: 48px 1.2rem 32px; }
}
