* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dusk-deep: #0F1B33;
  --dusk-mid: #1B2A4A;
  --saffron: #F0A83C;
  --vermilion: #D8674A;
  --parchment: #EDE4D3;
  --cream: #F7F3EA;
  --line: rgba(247, 243, 234, 0.16);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dusk-deep);
}

.site-header {
  position: relative;
}

.site-header-stack {
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-marquee {
  position: relative;
  background: linear-gradient(90deg, #e89a35 0%, var(--saffron) 45%, #f5b04a 100%);
  border-bottom: 1px solid rgba(15, 27, 51, 0.12);
  overflow: hidden;
}

.top-marquee__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.22) 55%,
    transparent 100%
  );
  pointer-events: none;
  animation: topMarqueeShine 6s ease-in-out infinite;
}

@keyframes topMarqueeShine {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.top-marquee__viewport {
  overflow: hidden;
  padding: 9px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.top-marquee__track {
  display: flex;
  width: max-content;
  animation: topMarqueeScroll 42s linear infinite;
  will-change: transform;
}

.top-marquee__chunk {
  flex-shrink: 0;
  padding-right: 4rem;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dusk-deep);
}

.top-marquee__chunk strong,
.top-marquee__chunk {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

@keyframes topMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .top-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 12px;
  }
  .top-marquee__chunk[aria-hidden="true"] {
    display: none;
  }
  .top-marquee__chunk {
    white-space: normal;
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .top-marquee__viewport {
    padding: 8px 0;
  }
  .top-marquee__chunk {
    font-size: 11.5px;
  }
}

.main-nav {
  position: relative;
  top: auto;
  z-index: 50;
  background: rgba(15, 27, 51, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease;
  overflow: visible;
}

.main-nav.nav-hidden {
  transform: translateY(-100%);
}

.main-nav.nav-menu-open {
  transform: none;
  z-index: 600;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  width: 210px;
  height: 40px;
  text-decoration: none;
}

.brand::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -4px;
  width: 209px;
  height: 95px;
  background: #E9E6DD;
  border-radius: 14px;
  z-index: 4;
}

.brand-logo {
  position: absolute;
  top: -12px;
  left: 0;
  height: 110px;
  width: auto;
  z-index: 5;
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 0.2px;
}

.brand-text em {
  font-style: italic;
  color: var(--saffron);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  margin-right: auto;
  margin-left: 0;
  align-items: center;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu a {
  color: var(--parchment);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: 0;
  background: var(--saffron);
  transition: width 0.25s ease;
}

.nav-menu a:hover {
  opacity: 1;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-home-item {
  display: flex;
  align-items: center;
}

.nav-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.05rem;
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 0 !important;
  background: rgba(247, 243, 234, 0.1);
  border: 1px solid rgba(247, 243, 234, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-home-link::after {
  display: none;
}

.nav-home-link:hover {
  color: var(--dusk-deep) !important;
  background: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-1px);
}

.nav-home-link-mobile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.nav-home-link-mobile i {
  color: var(--saffron);
  font-size: 1.2rem;
}

.nav-cta {
  background: var(--saffron);
  color: var(--dusk-deep);
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(240, 168, 60, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(240, 168, 60, 0.4);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.active span:nth-child(2){
  opacity: 0;
}
.nav-burger.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  padding: 8px 32px 24px;
  border-top: 1px solid var(--line);
  background: var(--dusk-deep);
}

.nav-menu-mobile li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.nav-menu-mobile a {
  color: var(--parchment);
  text-decoration: none;
  font-size: 15px;
}

.nav-menu-mobile.open {
  display: flex;
}

.nav-cta-mobile {
  color: var(--saffron) !important;
  font-weight: 600;
}

@media(max-width:900px){
  .nav-menu{
    display: none;
  }
  .nav-cta{
    display: none;
  }
  .nav-burger{
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 502;
  }
  .nav-inner {
    padding: 14px 20px;
    gap: 16px;
    position: relative;
    z-index: 502;
    align-items: center;
  }
  .brand {
    width: 160px;
    height: 36px;
  }
  .brand::before {
    top: 6px;
    left: -4px;
    width: 160px;
    height: 72px;
    border-radius: 14px;
  }
  .brand-logo {
    position: absolute;
    top: -8px;
    left: 0;
    height: 82px;
    width: auto;
    transform: none;
    max-width: none;
    margin: 0;
    display: block;
    object-fit: contain;
  }

  .main-nav {
    overflow: visible;
  }

  .nav-menu-mobile {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 550;
    padding: 96px 24px 40px;
    margin: 0;
    border-top: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--dusk-deep);
  }

  .nav-menu-mobile.open {
    display: flex;
    flex-direction: column;
  }

  .nav-menu-mobile li {
    padding: 14px 0;
  }

  .nav-menu-mobile a {
    font-size: 16px;
    display: block;
  }

  .main-nav.nav-menu-open .brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav.nav-menu-open .nav-inner {
    background: transparent;
  }
}

body.nav-menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 32px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 20s infinite;
}

.hero-bg-layer:nth-child(1) {
  animation-delay: 0s;
}

.hero-bg-layer:nth-child(2) {
  animation-delay: 5s;
}

.hero-bg-layer:nth-child(3) {
  animation-delay: 10s;
}

.hero-bg-layer:nth-child(4) {
  animation-delay: 15s;
}

@keyframes heroFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  22% { opacity: 1; }
  27% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,27,51,0.9) 0%, rgba(15,27,51,0.55) 35%, rgba(15,27,51,0.7) 68%, rgba(15,27,51,0.95) 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  z-index: 1;
  background: radial-gradient(circle, rgba(240, 168, 60, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-top: 8px;
}

.hero-eyebrow {
  color: var(--vermilion);
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 22px;
}

.hero-title span {
  font-style: italic;
  font-weight: 500;
  color: var(--saffron);
}

.hero-sub {
  color: var(--parchment);
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--saffron);
  color: var(--dusk-deep);
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(240, 168, 60, 0.32);
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(247, 243, 234, 0.4);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--saffron);
  background: rgba(240, 168, 60, 0.08);
}

.route-strip {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  height: 100px;
  width: 100%;
  margin-left: 18%;
}

.route-line {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(247, 243, 234, 0.3);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}

.route-stop {
  position: absolute;
  top: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 5px rgba(240, 168, 60, 0.2);
}

.stop-label {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.9;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .nav-menu, .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
    margin-left: auto;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .route-strip {
    display: none;
  }
}

.dhams-section {
  background: var(--parchment);
  padding: 100px 32px 60px;
}

.dhams-intro {
  max-width: 620px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-eyebrow {
  color: var(--vermilion);
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 42px;
  color: var(--dusk-deep);
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--vermilion);
}

.section-desc {
  color: var(--dusk-mid);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
}

.dhams-list {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.dhams-list::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 40px;
  border-left: 2px dashed rgba(27, 42, 74, 0.15);
}

.dham-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 50px 0;
}

.dham-row.reverse {
  grid-template-columns: 80px 1fr 1fr;
}

.dham-row.reverse .dham-media {
  order: 3;
}

.dham-row.reverse .dham-content {
  order: 2;
}

.dham-number {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dusk-deep);
  background: var(--parchment);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.dham-media {
  order: 2;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dham-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dham-row:hover .dham-media img {
  transform: scale(1.05);
}

.dham-content {
  order: 3;
}

.dham-deity {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--vermilion);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.dham-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--dusk-deep);
  margin-bottom: 14px;
}

.dham-stats {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}

.dham-stats span {
  font-size: 13px;
  font-weight: 500;
  color: var(--dusk-mid);
  background: rgba(27, 42, 74, 0.06);
  padding: 6px 12px;
  border-radius: 20px;
}

.dham-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--dusk-mid);
  opacity: 0.85;
  margin-bottom: 20px;
  max-width: 420px;
}

.dham-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dusk-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 3px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.dham-link i {
  font-style: normal;
  display: inline-block;
  transition: transform 0.2s ease;
}

.dham-link:hover i {
  transform: translateX(4px);
}

.dham-link:hover {
  color: var(--vermilion);
}

@media (max-width: 860px) {
  .dhams-list::before {
    left: 24px;
  }

  .dham-row, .dham-row.reverse {
    grid-template-columns: 50px 1fr;
    gap: 24px;
  }

  .dham-media {
    grid-column: 2;
    order: 1;
  }

  .dham-content {
    grid-column: 1 / -1;
    order: 2;
  }

  .dham-row.reverse .dham-media {
    order: 1;
  }

  .dham-row.reverse .dham-content {
    order: 2;
  }

  .dham-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .dham-content h3 {
    font-size: 26px;
  }
}

.related-section {
  background: var(--cream);
  padding: 90px 32px 100px;
}

.related-intro {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.related-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 38px;
  color: var(--dusk-deep);
}

.related-title em {
  font-style: italic;
  color: var(--vermilion);
}

.tour-carousel {
  max-width: 1150px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.tour-carousel::before,
.tour-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.tour-carousel::before {
  left: 0;
  
}

.tour-carousel::after {
  right: 0;
 
}

.tour-track {
  display: flex;
  gap: 26px;
  width: max-content;
}

.tour-card {
  width: 360px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 27, 51, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 27, 51, 0.14);
}

.tour-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-media img {
  transform: scale(1.08);
}

.tour-body {
  padding: 22px 22px 24px;
}

.tour-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--dusk-deep);
  margin-bottom: 14px;
}

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tour-days {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dusk-mid);
  opacity: 0.75;
}

.tour-tag {
  background: rgba(240, 168, 60, 0.14);
  color: var(--vermilion);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dusk-mid);
  opacity: 0.75;
  margin-bottom: 18px;
}

.tour-divider {
  height: 1px;
  background: rgba(27, 42, 74, 0.1);
  margin-bottom: 18px;
}

.tour-actions {
  display: flex;
  gap: 12px;
}

.card-btn-solid {
  flex: 1;
  text-align: center;
  background: var(--saffron);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.card-btn-solid:hover {
  background: var(--vermilion);
}

.card-btn-outline {
  flex: 1;
  text-align: center;
  background: #ffffff;
  color: var(--saffron);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 6px;
  border: 1.5px solid var(--saffron);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.card-btn-outline:hover {
  background: var(--saffron);
  color: #ffffff;
}

.tour-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(27, 42, 74, 0.12);
  color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(15, 27, 51, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tour-nav-btn:hover {
  background: var(--saffron);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.tour-nav-prev {
  left: 8px;
}

.tour-nav-next {
  right: 8px;
}

.tour-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.tour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 42, 74, 0.18);
  cursor: pointer;
  transition: width 0.4s ease, background 0.4s ease;
}

.tour-dot:hover {
  background: rgba(240, 168, 60, 0.6);
}

.tour-dot.active {
  width: 26px;
  background: var(--saffron);
}

@media (max-width: 900px) {
  .tour-card {
    width: 300px;
  }
  .tour-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

.promo-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.promo-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cloud-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.cloud {
  position: absolute;
  will-change: transform;
}

.cloud-1 {
  top: 6%;
  left: -400px;
  width: 50%;
  opacity: 0.85;
  filter: blur(1px);
  animation: cloudMove 40s linear infinite;
}

.cloud-2 {
  top: 6%;
  left: -220px;
  width: 50%;
  opacity: 0.85;
  filter: blur(1px);
  animation: cloudMove 50s linear infinite;
}

.cloud-3 {
  top: 6%;
  left: -320px;
  width: 50%;
  opacity: 0.85;
  filter: blur(1px);
  animation: cloudMove 50s linear infinite;
}

@keyframes cloudMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 700px));
  }
}

.promo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,27,51,0.55) 0%, rgba(15,27,51,0.68) 100%);
}

.promo-inner {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 50px 32px 90px;
}

.promo-figure {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pilgrim-img {
  position: relative;
  z-index: 3;
  max-height: 460px;
  object-fit: contain;
}

.promo-bigtext {
  position: absolute;
  left: 6%;
  top: 10%;
  z-index: 2;
  width: 92%;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.bigtext-row1 {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 4px;
}

.bigtext-best {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--saffron);
  opacity: 0.8;
}

.bigtext-deal {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--saffron);
  transform: translateY(-16px);
}

.bigtext-on {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--cream);
}

.bigtext-chardham {
  font-family: 'Fraunces', serif;
  font-size: 62px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 1px;
}

.bigtext-tour {
  font-family: 'Fraunces', serif;
  font-size: 62px;
  font-weight: 800;
  color: rgba(247, 243, 234, 0.4);
  letter-spacing: 1px;
}

.bigtext-packages {
  font-family: 'Fraunces', serif;
  font-size: 62px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 1px;
  -webkit-mask-image: linear-gradient(90deg, black 55%, transparent 92%);
  mask-image: linear-gradient(90deg, black 55%, transparent 92%);
}

.promo-content {
  max-width: 480px;
}

.promo-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 18px;
}

.promo-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.95;
  margin-bottom: 28px;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.mobile-contact-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  min-height: 56px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.35);
}

.mobile-contact-bar__half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: filter 0.2s ease;
}

.mobile-contact-bar__half i {
  font-size: 1.15rem;
}

.mobile-contact-bar__half:active {
  filter: brightness(0.92);
}

.mobile-contact-bar__call {
  background: linear-gradient(180deg, #243a66 0%, #152847 100%);
  color: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-contact-bar__wa {
  background: linear-gradient(180deg, #2fd06e 0%, #1aab54 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.scroll-top-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1.5px solid var(--saffron);
  background: rgba(15, 27, 51, 0.35);
  color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.scroll-top-float:hover {
  background: rgba(15, 27, 51, 0.55);
}

@media (max-width: 900px) {
  .promo-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    min-height: auto;
  }

  .promo-figure {
    min-height: 300px;
    margin-bottom: 20px;
  }

  .pilgrim-img {
    max-height: 280px;
  }

  .promo-bigtext {
    left: 4%;
  }

  .bigtext-chardham, .bigtext-tour, .bigtext-packages {
    font-size: 34px;
  }

  .bigtext-best {
    font-size: 30px;
  }

  .promo-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .whatsapp-float {
    display: none !important;
  }

  .mobile-contact-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  body.nav-menu-open {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .scroll-top-float {
    right: 16px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

.gallery-section {
  background: var(--cream);
  padding: 100px 32px;
}

.gallery-intro {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.gallery-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, transparent 40%, rgba(15,27,51,0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption span {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 12.5px;
  color: var(--parchment);
  opacity: 0.85;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}
.hotels-section {
  background: var(--parchment);
  padding: 100px 32px;
}

.hotels-intro {
  max-width: 620px;
  margin: 0 auto 50px;
  text-align: center;
}

.hotel-search {
  max-width: 1000px;
  margin: 0 auto 60px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 27, 51, 0.1);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 18px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dusk-mid);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.search-field select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(27, 42, 74, 0.15);
  border-radius: 8px;
  padding: 11px 36px 11px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dusk-deep);
  background: var(--cream) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"><path d="M1 1L6 6L11 1" stroke="%231B2A4A" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 12px center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(240, 168, 60, 0.15);
}
.search-field input {
  border: 1px solid rgba(27, 42, 74, 0.15);
  border-radius: 8px;
  padding: 11px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dusk-deep);
  background: var(--cream);
  cursor: pointer;
}
.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  border: 1px solid rgba(27, 42, 74, 0.15);
  border-radius: 8px;
  padding: 11px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dusk-deep);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-select-trigger svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.custom-select.open .custom-select-trigger {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(240, 168, 60, 0.15);
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(15, 27, 51, 0.16);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-select-option {
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--dusk-mid);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-option:hover {
  background: rgba(240, 168, 60, 0.12);
  color: var(--dusk-deep);
}

.custom-select-option.active {
  background: var(--saffron);
  color: #ffffff;
  font-weight: 600;
}
.search-btn {
  background: var(--saffron);
  color: var(--dusk-deep);
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(240, 168, 60, 0.32);
  transition: transform 0.2s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
}

.hotel-featured {
  max-width: 1150px;
  margin: 0 auto 26px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(15, 27, 51, 0.14);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hotel-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 27, 51, 0.2);
}

.featured-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hotel-featured:hover .featured-media img {
  transform: scale(1.06);
}

.featured-ribbon {
  position: absolute;
  top: 18px;
  left: -34px;
  background: var(--vermilion);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(-40deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.featured-body {
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dusk-deep);
  margin: 8px 0 14px;
}

.featured-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dusk-mid);
  opacity: 0.85;
  margin-bottom: 20px;
  max-width: 420px;
}

.grid-label {
  max-width: 1150px;
  margin: 0 auto 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dusk-mid);
  opacity: 0.65;
}

.hotel-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hotel-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 27, 51, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 27, 51, 0.14);
}

.hotel-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.hotel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-media img {
  transform: scale(1.08);
}

.hotel-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffff;
  color: var(--dusk-deep);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.hotel-rating i {
  font-style: normal;
  color: var(--saffron);
}

.hotel-body {
  padding: 18px 18px 20px;
}

.hotel-loc {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--vermilion);
  text-transform: uppercase;
}

.hotel-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dusk-deep);
  margin: 8px 0 12px;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.hotel-amenities span {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--dusk-mid);
  background: rgba(27, 42, 74, 0.06);
  padding: 5px 10px;
  border-radius: 20px;
}

.hotel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(27, 42, 74, 0.08);
}

.hotel-price {
  display: flex;
  flex-direction: column;
}

.hotel-price strong {
  font-size: 16px;
  color: var(--dusk-deep);
}

.hotel-price span {
  font-size: 11px;
  color: var(--dusk-mid);
  opacity: 0.7;
}

.hotel-btn {
  background: var(--saffron);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.hotel-btn:hover {
  background: var(--vermilion);
}

@media (max-width: 950px) {
  .hotel-search {
    grid-template-columns: 1fr 1fr;
  }

  .search-btn {
    grid-column: span 2;
  }

  .hotel-featured {
    grid-template-columns: 1fr;
  }

  .featured-media {
    min-height: 220px;
  }

  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hotel-search {
    grid-template-columns: 1fr;
  }

  .search-btn {
    grid-column: span 1;
  }

  .featured-body {
    padding: 26px 22px;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  position: relative;
  background: var(--dusk-deep);
  overflow: hidden;
  padding: 80px 32px 0;
}

.footer-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 168, 60, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand {
  margin-bottom: 6px;
  width: auto;
  height: auto;
  min-height: 0;
  display: block;
  align-items: flex-start;
}

.footer-brand .brand::before {
  display: none;
}

.footer-brand .brand-logo {
  position: static;
  transform: none;
  height: 72px;
  max-width: 180px;
  filter: none;
  margin: 0;
  top: auto;
  left: auto;
  display: block;
}
.fut-logo{
  width: 25%;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--parchment);
  opacity: 0.75;
  margin-bottom: 24px;
  max-width: 320px;
  margin-top: 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--dusk-deep);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--parchment);
  opacity: 0.75;
  text-decoration: none;
  margin-bottom: 14px;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--saffron);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--parchment);
  opacity: 0.8;
}
.footer-contact-item i {
    color: #f0a83c;   
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--saffron);
}

.footer-contact-item span {
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-newsletter {
  display: flex;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--cream);
}

.footer-newsletter input::placeholder {
  color: var(--parchment);
  opacity: 0.5;
}

.footer-newsletter input:focus {
  outline: none;
}

.footer-newsletter button {
  background: var(--saffron);
  border: none;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-newsletter button:hover {
  background: var(--vermilion);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--parchment);
  opacity: 0.6;
  margin: 0;
}

.footer-designer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px 22px;
  font-size: 12px;
  color: var(--parchment);
  opacity: 0.55;
  border-top: 1px solid rgba(237, 228, 211, 0.08);
  margin: 0;
  padding-top: 16px;
}

.footer-designer a {
  color: var(--saffron);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-designer a:hover {
  opacity: 1;
  color: var(--cream);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--parchment);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--saffron);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;

  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
     align-items: center;
  }
  .footer-bottom p {
    margin-left: 0;
  }
}

/* <====yatra packages====> */

.packages-section {
  background: var(--dusk-deep);
  padding: 100px 32px 110px;
}

.packages-section .section-title {
  color: var(--cream);
}

.packages-section .section-desc {
  color: var(--parchment);
  opacity: 0.75;
}

.packages-intro {
  max-width: 620px;
  margin: 0 auto 70px;
  text-align: center;
}

.packages-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.packages-grid.packages-grid-4 {
  max-width: 1160px;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.packages-group-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 30px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.packages-group-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--saffron);
  white-space: nowrap;
}

.packages-group-city {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  color: var(--cream);
  margin: 0;
}

.packages-group-line {
  flex: 1;
  min-width: 40px;
  height: 1px;
  background: rgba(247, 243, 234, 0.15);
}

.package-sub {
  font-size: 13.5px;
  color: var(--parchment);
  opacity: 0.85;
  margin-bottom: 12px;
  line-height: 1.45;
}

.package-duration {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.package-durationIcon {
  font-size: 18px;
  opacity: 0.9;
}

.package-duration strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--cream);
}

.package-duration span {
  font-size: 12.5px;
  color: var(--parchment);
  opacity: 0.8;
}

.package-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
}

.package-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.6s ease;
}

.package-card:hover .package-bg {
  transform: scale(1.16);
}

.package-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,51,0.25) 0%, rgba(15,27,51,0.55) 45%, rgba(15,27,51,0.95) 100%);
}

.package-card.featured {
  border: 2px solid var(--saffron);
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: var(--saffron);
  color: var(--dusk-deep);
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(240, 168, 60, 0.4);
}

.package-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 36px 28px 32px;
}

.package-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dusk-deep);
  background: var(--saffron);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.package-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.package-price {
  font-size: 13.5px;
  color: var(--parchment);
  opacity: 0.85;
  margin-bottom: 24px;
}

.package-price span {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  margin-right: 6px;
}

.package-features {
  list-style: none;
  margin-bottom: 26px;
  background: rgba(15, 27, 51, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 6px 16px;
  border: 1px solid rgba(247, 243, 234, 0.1);
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--parchment);
  padding: 11px 0;
  border-bottom: 1px solid rgba(247, 243, 234, 0.1);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li svg {
  flex-shrink: 0;
  color: var(--saffron);
}

.package-btn {
  display: block;
  text-align: center;
  background: rgba(247, 243, 234, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(247, 243, 234, 0.3);
  color: var(--cream);
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.package-btn:hover {
  background: rgba(247, 243, 234, 0.2);
  border-color: var(--saffron);
  transform: translateY(-2px);
}

.featured-btn {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--dusk-deep);
}

.featured-btn:hover {
  background: #f5b957;
  border-color: #f5b957;
}

@media (max-width: 1100px) {
  .packages-grid.packages-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .packages-section {
    padding: 72px 16px 80px;
  }

  .packages-intro {
    margin-bottom: 48px;
  }

  .packages-section .section-title {
    font-size: 28px;
  }

  .packages-grid,
  .packages-grid.packages-grid-4 {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
  }

  .package-card {
    min-height: 420px;
  }

  .package-card.featured {
    transform: scale(1);
    order: -1;
  }

  .package-card.featured:hover {
    transform: translateY(-8px);
  }

  .packages-group-heading {
    margin-bottom: 24px;
    padding: 0 4px;
  }
}

@media (max-width: 560px) {
  .package-header h3 {
    font-size: 20px;
  }

  .package-content {
    padding: 28px 20px 24px;
  }
}
.trust-section {
  background: var(--parchment);
  padding: 100px 32px;
}

.trust-intro {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.trust-grid {
  max-width: 1080px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 27, 51, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 27, 51, 0.1);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(240, 168, 60, 0.14);
  color: var(--vermilion);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dusk-deep);
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dusk-mid);
  opacity: 0.8;
}

.trust-stats {
  max-width: 900px;
  margin: 0 auto;
  background: var(--dusk-deep);
  border-radius: 18px;
  padding: 42px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-stat {
  text-align: center;
  position: relative;
}

.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 8px;
  right: -10px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--saffron);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--parchment);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .trust-stat:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  .trust-stats {
    grid-template-columns: 1fr 1fr;
  }
}
.testimonials-section {
  position: relative;
  background: var(--cream);
  padding: 100px 32px;
  overflow: hidden;
}

.testimonials-intro {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.testimonials-carousel {
  max-width: 1150px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}

.testimonials-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream), transparent);
}

.testimonials-track {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 40s linear infinite;
}

.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  border-radius: 16px;
  padding: 34px 26px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card.dark {
  background: var(--dusk-deep);
  min-height: 320px;
  box-shadow: 0 18px 40px rgba(15, 27, 51, 0.2);
}

.testimonial-card.light {
  background: var(--parchment);
  min-height: 250px;
  box-shadow: 0 10px 26px rgba(15, 27, 51, 0.06);
}

.testimonial-quote-icon {
  font-size: 26px;
  color: var(--saffron);
  opacity: 0.5;
  margin-bottom: 14px;
  display: block;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--dusk-mid);
  margin-bottom: 26px;
}

.testimonial-card.dark .testimonial-text {
  color: var(--parchment);
  opacity: 0.9;
}

.testimonial-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(27, 42, 74, 0.1);
}

.testimonial-card.dark .testimonial-author {
  border-top-color: rgba(247, 243, 234, 0.15);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--dusk-deep);
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
}

.author-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dusk-deep);
}

.testimonial-card.dark .author-name {
  color: var(--cream);
}

.author-loc {
  display: block;
  font-size: 12px;
  color: var(--dusk-mid);
  opacity: 0.65;
}

.testimonial-card.dark .author-loc {
  color: var(--parchment);
  opacity: 0.65;
}

.author-rating {
  grid-column: 2;
  display: flex;
  gap: 4px;
  color: var(--saffron);
  font-size: 12px;
}

@media (max-width: 560px) {
  .testimonial-card {
    width: 280px;
  }
}

/* <========char dham yarta<======== */

.chardham-intro-section {
  background: var(--dusk-deep);
  padding: 110px 32px 90px;
}

.chardham-intro-heading {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.chardham-intro-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 44px;
  color: var(--cream);
  margin-bottom: 18px;
}

.chardham-intro-title em {
  font-style: italic;
  color: var(--saffron);
}

.chardham-intro-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--parchment);
  opacity: 0.75;
}

.chardham-showcase {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

.showcase-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.showcase-card.size-lg {
  grid-row: span 2;
}

.showcase-card.size-sm {
  grid-row: span 1;
  align-self: center;
  height: 260px;
  margin-top: 75%;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-card:hover img {
  transform: scale(1.08);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,51,0.1) 0%, rgba(15,27,51,0.55) 60%, rgba(15,27,51,0.92) 100%);
}

.showcase-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px 20px;
}

.showcase-order {
  align-self: flex-end;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  background: rgba(15, 27, 51, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(247, 243, 234, 0.25);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-deity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.showcase-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.showcase-elevation {
  font-size: 12.5px;
  color: var(--parchment);
  opacity: 0.75;
}

.chardham-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: max-content;
  margin: 60px auto 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--parchment);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.chardham-scroll-hint:hover {
  opacity: 1;
  color: var(--saffron);
}

.chardham-scroll-hint i {
  animation: bounceDown 1.8s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 900px) {
  .chardham-intro-section {
    padding: 88px 20px 70px;
  }

  .chardham-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 16px;
  }

  .showcase-card {
    min-height: 240px;
  }

  .showcase-card.size-lg {
    grid-row: span 1;
  }

  .showcase-card.size-sm {
    align-self: stretch;
    margin-top: 0;
    height: auto;
    min-height: 240px;
  }

  .showcase-text h3 {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .chardham-intro-section {
    padding: 76px 16px 56px;
  }

  .chardham-intro-heading {
    margin-bottom: 40px;
  }

  .chardham-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .showcase-card,
  .showcase-card.size-lg,
  .showcase-card.size-sm {
    min-height: 280px;
    height: auto;
    margin-top: 0;
  }

  .chardham-intro-title {
    font-size: 30px;
  }

  .chardham-intro-desc {
    font-size: 15px;
  }

  .chardham-scroll-hint {
    margin-top: 40px;
    font-size: 13px;
    padding: 0 8px;
    text-align: center;
  }

  .best-time-section {
    padding: 64px 16px;
  }

  .best-time-intro {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .section-desc {
    font-size: 15px;
  }

  .season-timeline {
    margin-bottom: 48px;
  }

  .climb-section {
    padding: 64px 16px 80px;
  }

  .permit-section {
    padding: 64px 16px 80px;
  }
}
.best-time-section {
  background: var(--cream);
  padding: 100px 32px;
}

.best-time-intro {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.season-timeline {
  max-width: 1000px;
  margin: 0 auto 70px;
}

.timeline-track {
  display: flex;
  height: 10px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
}

.timeline-segment {
  height: 100%;
}

.seg-best {
  background: #4CAF7D;
}

.seg-moderate {
  background: var(--saffron);
}

.seg-caution {
  background: var(--vermilion);
}

.seg-closed {
  background: rgba(27, 42, 74, 0.25);
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--dusk-mid);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.season-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.season-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 10px 28px rgba(15, 27, 51, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.season-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 27, 51, 0.1);
}

.season-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.icon-best {
  background: rgba(76, 175, 125, 0.14);
  color: #4CAF7D;
}

.icon-moderate {
  background: rgba(240, 168, 60, 0.14);
  color: var(--saffron);
}

.icon-caution {
  background: rgba(216, 103, 74, 0.14);
  color: var(--vermilion);
}

.icon-good {
  background: rgba(27, 42, 74, 0.08);
  color: var(--dusk-mid);
}

.season-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.tag-best {
  background: rgba(76, 175, 125, 0.14);
  color: #4CAF7D;
}

.tag-moderate {
  background: rgba(240, 168, 60, 0.14);
  color: var(--saffron);
}

.tag-caution {
  background: rgba(216, 103, 74, 0.14);
  color: var(--vermilion);
}

.tag-good {
  background: rgba(27, 42, 74, 0.08);
  color: var(--dusk-mid);
}

.season-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dusk-deep);
  margin-bottom: 10px;
}

.season-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dusk-mid);
  opacity: 0.85;
}

@media (max-width: 900px) {
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-labels span:nth-child(even) {
    opacity: 0;
  }
}

@media (max-width: 560px) {
  .season-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline-labels span {
    font-size: 10px;
  }
}
.climb-section{
  background:#F4F1EA;
  padding:100px 24px 120px;
}
.climb-head{
  max-width:640px;
  margin:0 auto 70px;
  text-align:center;
}
.climb-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.climb-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:42px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.climb-title i{
  color:#C85A3E;
  font-style:italic;
}
.climb-sub{
  font-size:16px;
  color:#5C594F;
  line-height:1.6;
  margin:0;
}

.climb-chart{
  position:relative;
  max-width:1100px;
  height:340px;
  margin:0 auto;
}
.climb-map{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.climb-point{
  position:absolute;
  transform:translate(-50%,-50%);
}
.climb-dot{
  display:block;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#C85A3E;
  border:3px solid #F4F1EA;
  box-shadow:0 0 0 1px #C85A3E;
  margin:0 auto;
}
.climb-card{
  background:#fff;
  border-radius:14px;
  padding:14px 16px;
  width:170px;
  margin-top:14px;
  box-shadow:0 12px 24px rgba(30,42,58,0.08);
  text-align:center;
  transition:transform .25s ease;
}
.climb-point:hover .climb-card{
  transform:translateY(-4px);
}
.climb-card h3{
  font-family:Georgia,'Playfair Display',serif;
  font-size:17px;
  color:#1E2A3A;
  margin:8px 0 2px;
}
.climb-card p{
  font-size:12.5px;
  color:#79766C;
  margin:0;
}
.climb-badge{
  display:inline-block;
  font-size:10px;
  font-weight:700;
  letter-spacing:.6px;
  padding:4px 9px;
  border-radius:20px;
}
.climb-badge-green{background:#DFEEE1;color:#3C8B5B;}
.climb-badge-amber{background:#FBEBD3;color:#C9791E;}
.climb-badge-terracotta{background:#F7DCD3;color:#C1502E;}
.climb-badge-navy{background:#E4E7EC;color:#1E2A3A;}

.climb-gap{
  position:absolute;
  bottom:0;
  transform:translateX(-50%);
  font-size:12px;
  color:#9A968B;
  background:#F4F1EA;
  padding:0 6px;
}

.climb-mobile{
  display:none;
}

@media(max-width:820px){
  .climb-chart{display:none;}
  .climb-mobile{
    display:block;
    max-width:420px;
    margin:0 auto;
    position:relative;
    padding-left:26px;
  }
  .climb-mobile::before{
    content:"";
    position:absolute;
    left:5px;
    top:6px;
    bottom:6px;
    width:2px;
    background:repeating-linear-gradient(to bottom,#C85A3E 0 6px,transparent 6px 12px);
  }
  .climb-mrow{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:6px;
  }
  .climb-mdot{
    position:absolute;
    left:-26px;
    top:6px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#C85A3E;
    border:3px solid #F4F1EA;
    box-shadow:0 0 0 1px #C85A3E;
  }
  .climb-mrow h3{
    font-family:Georgia,'Playfair Display',serif;
    font-size:16px;
    color:#1E2A3A;
    margin:6px 0 2px;
  }
  .climb-mrow p{
    font-size:12.5px;
    color:#79766C;
    margin:0;
  }
  .climb-mgap{
    display:block;
    font-size:11.5px;
    color:#9A968B;
    margin:8px 0 8px 22px;
  }
}

@media(max-width:520px){
  .climb-title{font-size:32px;}
}
.permit-section{
  background:#F4F1EA;
  padding:100px 24px 120px;
}
.permit-head{
  max-width:640px;
  margin:0 auto 60px;
  text-align:center;
}
.permit-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.permit-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:42px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.permit-title i{
  color:#C85A3E;
  font-style:italic;
}
.permit-sub{
  font-size:16px;
  color:#5C594F;
  line-height:1.6;
  margin:0;
}

.permit-card{
  max-width:1000px;
  margin:0 auto;
  background:#fff;
  border-radius:20px;
  box-shadow:0 24px 50px rgba(30,42,58,0.1);
  display:flex;
  overflow:hidden;
}
.permit-main{
  flex:2.4;
  display:flex;
  gap:36px;
  padding:44px 40px;
}
.permit-col h4{
  font-family:Georgia,'Playfair Display',serif;
  font-size:16px;
  color:#1E2A3A;
  margin:0 0 16px;
}
.permit-col ul{
  list-style:none;
  margin:0;
  padding:0;
}
.permit-col li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13.5px;
  color:#5C594F;
  margin-bottom:12px;
  line-height:1.4;
}
.permit-check{
  flex-shrink:0;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#DFEEE1;
  color:#3C8B5B;
  font-size:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:1px;
}

.permit-cut{
  position:relative;
  width:0;
  border-left:2px dashed #E4E1D8;
}
.permit-notch{
  position:absolute;
  left:-11px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#F4F1EA;
}
.permit-notch-top{top:-11px;}
.permit-notch-bottom{bottom:-11px;}

.permit-stub{
  flex:1;
  background:#1E2A3A;
  padding:44px 32px;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.permit-stub-row span{
  display:block;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:1px;
  color:#C85A3E;
  margin-bottom:6px;
}
.permit-stub-row p{
  font-size:14px;
  color:#F4F1EA;
  margin:0;
  line-height:1.4;
}
.permit-barcode{
  margin-top:auto;
  height:34px;
  background:repeating-linear-gradient(90deg,#F4F1EA 0 2px,transparent 2px 4px,#F4F1EA 4px 5px,transparent 5px 9px,#F4F1EA 9px 10px,transparent 10px 15px);
  opacity:.45;
}

@media(max-width:820px){
  .permit-card{
    flex-direction:column;
  }
  .permit-main{
    flex-direction:column;
    gap:28px;
    padding:36px 28px;
  }
  .permit-cut{
    border-left:none;
    border-top:2px dashed #E4E1D8;
    width:auto;
    height:0;
  }
  .permit-notch{
    top:-11px;
    bottom:auto;
  }
  .permit-notch-top{left:-11px;}
  .permit-notch-bottom{left:auto;right:-11px;top:-11px;}
  .permit-stub{
    padding:32px 28px;
  }
}

@media(max-width:520px){
  .permit-title{font-size:32px;}
}
.pointed-divider{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  gap:14px;
}
.pointed-divider-line{
  flex:1;
  height:8px;
  background:linear-gradient(90deg,transparent,#D8D4C8);
}
.pointed-divider-line:last-child{
  background:linear-gradient(90deg,#D8D4C8,transparent);
}
.pointed-divider-diamond{
  width:8px;
  height:8px;
  background:#C85A3E;
  transform:rotate(45deg);
  flex-shrink:0;
}

/* <=========holiday pacakages=========> */

.holiday-hero{
  background:#0F1B2E;
  padding:100px 24px 110px;
  overflow:hidden;
}
.holiday-hero-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:60px;
}
.holiday-hero-content{
  flex:1;
  min-width:320px;
}
.holiday-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#E2694A;
  margin-bottom:16px;
}
.holiday-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:52px;
  color:#FFFFFF;
  line-height:1.15;
  margin:0 0 22px;
}
.holiday-title i{
  color:#E8A33D;
  font-style:italic;
}
.holiday-sub{
  font-size:16.5px;
  color:#A9B2C0;
  line-height:1.7;
  max-width:440px;
  margin:0 0 40px;
}
.holiday-cta-row{
  display:flex;
  align-items:center;
  gap:36px;
  flex-wrap:wrap;
}
.holiday-cta{
  display:inline-block;
  background:#E8A33D;
  color:#0F1B2E;
  font-weight:700;
  font-size:14.5px;
  padding:15px 30px;
  border-radius:8px;
  text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease;
}
.holiday-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(232,163,61,0.25);
}
.holiday-stats{
  display:flex;
  gap:26px;
}
.holiday-stat{
  display:flex;
  flex-direction:column;
  padding-left:22px;
  border-left:1px solid rgba(255,255,255,0.12);
}
.holiday-stat:first-child{
  padding-left:0;
  border-left:none;
}
.holiday-stat strong{
  font-family:Georgia,'Playfair Display',serif;
  font-size:22px;
  color:#FFFFFF;
}
.holiday-stat span{
  font-size:12px;
  color:#8590A0;
  margin-top:2px;
}

.holiday-hero-visual{
  flex:1;
  min-width:320px;
  display:flex;
  justify-content:center;
}
.holiday-collage{
  position:relative;
  width:100%;
  max-width:420px;
  height:420px;
}
.holiday-img{
  position:absolute;
  object-fit:cover;
  border-radius:16px;
  border:4px solid #0F1B2E;
  box-shadow:0 20px 40px rgba(0,0,0,0.35);
}
.holiday-img-1{
  width:220px;
  height:280px;
  top:0;
  left:20px;
  transform:rotate(-6deg);
  z-index:2;
}
.holiday-img-2{
  width:200px;
  height:250px;
  top:60px;
  right:0;
  transform:rotate(5deg);
  z-index:1;
}
.holiday-img-3{
  width:170px;
  height:170px;
  bottom:0;
  left:70px;
  transform:rotate(3deg);
  z-index:3;
}
.holiday-badge{
  position:absolute;
  bottom:20px;
  right:10px;
  background:#FFFFFF;
  border-radius:14px;
  padding:12px 18px;
  text-align:center;
  box-shadow:0 16px 30px rgba(0,0,0,0.25);
  z-index:4;
}
.holiday-badge-stars{
  display:block;
  color:#E8A33D;
  font-size:13px;
  letter-spacing:2px;
}
.holiday-badge p{
  margin:4px 0 0;
  font-size:11.5px;
  font-weight:600;
  color:#0F1B2E;
  white-space:nowrap;
}

@media(max-width:900px){
  .holiday-hero-inner{
    flex-direction:column;
    text-align:center;
  }
  .holiday-sub{
    margin-left:auto;
    margin-right:auto;
  }
  .holiday-cta-row{
    justify-content:center;
  }
  .holiday-stat{
    padding-left:18px;
  }
}

@media(max-width:520px){
  .holiday-title{font-size:36px;}
  .holiday-collage{height:360px;}
  .holiday-img-1{width:170px;height:220px;}
  .holiday-img-2{width:150px;height:190px;}
  .holiday-img-3{width:130px;height:130px;}
}
.postcard-section{
  background:linear-gradient(180deg, #FAF7F0 0%, #F3EDE2 100%);
  padding:88px 20px 100px;
}
.postcard-head{
  max-width:680px;
  margin:0 auto 52px;
  text-align:center;
}
.postcard-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.postcard-title{
  font-family:'Fraunces', Georgia, 'Playfair Display', serif;
  font-size:clamp(28px, 4vw, 40px);
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.postcard-title i{
  color:#E8A33D;
  font-style:italic;
}
.postcard-sub{
  font-size:15.5px;
  color:#7A7668;
  line-height:1.65;
  margin:0;
}

.postcard-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:0 auto 56px;
}
.postcard-tab{
  border:1px solid #E4DFD0;
  background:#FFFFFF;
  color:#7A7668;
  font-size:14px;
  font-weight:600;
  padding:10px 26px;
  border-radius:100px;
  cursor:pointer;
  transition:all .2s ease;
}
.postcard-tab:hover{
  border-color:#C85A3E;
  color:#C85A3E;
}
.postcard-tab.active{
  background:#1E2A3A;
  border-color:#1E2A3A;
  color:#FAF7F0;
}

.postcard-grid{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
  gap:28px;
  align-items:stretch;
}
.postcard-card{
  background:#FFFFFF;
  border-radius:18px;
  border:1px solid rgba(30, 42, 58, 0.08);
  padding:0;
  box-shadow:0 10px 28px rgba(30,42,58,0.07);
  transform:none;
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  text-decoration:none;
  color:inherit;
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.postcard-card-alt{
  transform:none;
}
.postcard-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 44px rgba(30,42,58,0.14);
  border-color:rgba(200, 90, 62, 0.25);
}
.postcard-card:focus-visible{
  outline:3px solid #E8A33D;
  outline-offset:3px;
}

.postcard-photo{
  position:relative;
  overflow:hidden;
  aspect-ratio:4 / 3;
}
.postcard-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 45%, rgba(15, 27, 51, 0.35) 100%);
  pointer-events:none;
  opacity:0.85;
  transition:opacity .28s ease;
}
.postcard-card:hover .postcard-photo::after{
  opacity:1;
}
.postcard-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.postcard-card:hover .postcard-photo img{
  transform:scale(1.06);
}
.postcard-stamp{
  position:absolute;
  top:12px;
  right:12px;
  width:38px;
  height:38px;
  background:rgba(255, 255, 255, 0.92);
  border:none;
  border-radius:10px;
  color:#C85A3E;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:none;
  box-shadow:0 6px 16px rgba(30, 42, 58, 0.15);
  z-index:1;
}

.postcard-info{
  flex:1;
  padding:18px 18px 14px;
  border-bottom:none;
}
.postcard-info h3{
  font-family:'Fraunces', Georgia, 'Playfair Display', serif;
  font-size:18px;
  font-weight:600;
  color:#1E2A3A;
  margin:0 0 8px;
  line-height:1.35;
}
.postcard-route{
  font-size:12px;
  color:#8A8677;
  line-height:1.5;
  margin:0 0 10px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.postcard-duration{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#C85A3E;
  background:#FBEFE9;
  padding:5px 11px;
  border-radius:100px;
}

.postcard-tag{
  position:static;
  transform:none;
  margin:0 18px 18px;
  background:#1E2A3A;
  color:#FAF7F0;
  font-size:13px;
  font-weight:600;
  padding:12px 16px;
  border-radius:10px;
  box-shadow:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:background .25s ease, gap .25s ease;
}
.postcard-tag::before{
  display:none;
}
.postcard-card:hover .postcard-tag{
  background:#C85A3E;
  gap:12px;
}
.postcard-tag i{
  font-size:16px;
  transition:transform .25s ease;
}
.postcard-card:hover .postcard-tag i{
  transform:translateX(3px);
}

@media(max-width:980px){
  .postcard-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:22px;
  }
}

@media(max-width:560px){
  .postcard-section{
    padding:64px 16px 80px;
  }
  .postcard-head{
    margin-bottom:36px;
  }
  .postcard-title{
    font-size:28px;
  }
  .postcard-sub{
    font-size:14.5px;
  }
  .postcard-grid{
    grid-template-columns:1fr;
    max-width:none;
    gap:20px;
  }
  .postcard-info h3{
    font-size:17px;
  }
  .postcard-tabs{
    gap:8px;
    margin-bottom:40px;
  }
  .postcard-tab{
    padding:9px 20px;
    font-size:13px;
  }
}
.mood-section{
  background:#FAF7F0;
  padding:100px 24px 120px;
}
.mood-head{
  max-width:620px;
  margin:0 auto 60px;
  text-align:center;
}
.mood-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.mood-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:40px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.mood-title i{
  color:#E8A33D;
  font-style:italic;
}
.mood-sub{
  font-size:15.5px;
  color:#7A7668;
  line-height:1.6;
  margin:0;
}

.mood-strip{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  gap:10px;
  height:460px;
}
.mood-panel{
  position:relative;
  flex:1;
  border-radius:18px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  cursor:pointer;
  transition:flex .5s ease;
}
.mood-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(30,42,58,0.85) 0%,rgba(30,42,58,0.35) 45%,rgba(30,42,58,0.15) 100%);
}
.mood-strip:hover .mood-panel{
  flex:0.7;
}
.mood-strip .mood-panel:hover{
  flex:2.6;
}

.mood-panel-inner{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:28px 22px;
  color:#FAF7F0;
}
.mood-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  font-size:18px;
  margin-bottom:14px;
}
.mood-panel-inner h3{
  font-family:Georgia,'Playfair Display',serif;
  font-size:22px;
  margin:0 0 8px;
  white-space:nowrap;
}
.mood-panel-inner p{
  font-size:13px;
  line-height:1.6;
  color:#D8DCE3;
  margin:0 0 14px;
  max-width:230px;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .3s ease,transform .3s ease;
}
.mood-link{
  display:inline-block;
  font-size:12.5px;
  font-weight:700;
  color:#E8A33D;
  text-decoration:none;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .3s ease .05s,transform .3s ease .05s;
  white-space:nowrap;
}
.mood-panel:hover .mood-panel-inner p,
.mood-panel:hover .mood-link{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:900px){
  .mood-strip{
    flex-direction:column;
    height:auto;
  }
  .mood-panel{
    height:140px;
    flex:none !important;
  }
  .mood-panel-inner p,
  .mood-link{
    opacity:1;
    transform:none;
  }
  .mood-panel-inner p{
    max-width:none;
  }
}

@media(max-width:520px){
  .mood-title{font-size:30px;}
}
.tag-section{
  position:relative;
  padding:100px 24px 130px;
  overflow:hidden;
  isolation:isolate;
}
.tag-bg{
  position:absolute;
  inset:0;
  background-image:url('travel/mountain.avif');
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  z-index:-2;
}
.tag-overlay{
  position:absolute;
  inset:0;
background: linear-gradient(180deg, rgb(207 203 194 / 94%) 0%, rgb(71 70 67 / 88%) 40%, rgba(250, 247, 240, 0.96) 100%);
  z-index:-1;
}

.tag-head{
  max-width:600px;
  margin:0 auto 70px;
  text-align:center;
}
.tag-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.tag-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:40px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.tag-title i{
  color:#E8A33D;
  font-style:italic;
}
.tag-sub{
  font-size:15.5px;
  color:white;
  line-height:1.6;
  margin:0;
}

.tag-line{
  max-width:1000px;
  margin:0 auto;
  height:2px;
  background:#D8D2C2;
}

.tag-row{
  max-width:1000px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
}
.tag-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:transform .3s ease;
}
.tag-item:hover{
  transform:translateY(-10px);
}
.tag-string{
  width:1px;
  height:36px;
  background:#C9C2AE;
}
.tag-item-alt .tag-string{
  height:52px;
}

.tag-card{
  position:relative;
  background:#FFFFFF;
  width:100%;
  max-width:220px;
  padding:34px 20px 26px;
  border-radius:2px 14px 14px 14px;
  border:1px solid #ECE7D8;
  box-shadow:0 18px 34px rgba(30,42,58,0.1);
  text-align:center;
}
.tag-hole{
  position:absolute;
  top:-9px;
  left:50%;
  transform:translateX(-50%);
  width:16px;
  height:16px;
  background:#FAF7F0;
  border:3px solid #D8D2C2;
  border-radius:50%;
}
.tag-code{
  display:inline-block;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:1px;
  color:#B7B09C;
  margin-bottom:12px;
}
.tag-card h3{
  font-family:Georgia,'Playfair Display',serif;
  font-size:19px;
  color:#1E2A3A;
  margin:0 0 6px;
}
.tag-days{
  font-size:12.5px;
  color:#8A8677;
  margin:0;
}
.tag-divider{
  border-top:1px dashed #E4DFD0;
  margin:18px 0;
}
.tag-price{
  font-family:Georgia,'Playfair Display',serif;
  font-size:21px;
  color:#C85A3E;
  margin:0 0 18px;
}
.tag-price span{
  font-family:inherit;
  font-size:11px;
  color:#B7B09C;
  font-weight:400;
}
.tag-cta{
  display:inline-block;
  font-size:12.5px;
  font-weight:700;
  color:#1E2A3A;
  text-decoration:none;
  border-bottom:1px solid #1E2A3A;
  padding-bottom:2px;
  transition:color .2s ease,border-color .2s ease;
}
.tag-cta:hover{
  color:#C85A3E;
  border-color:#C85A3E;
}

@media(max-width:900px){
  .tag-row{
    flex-wrap:wrap;
    justify-content:center;
  }
  .tag-item{
    flex:0 0 45%;
  }
}

@media(max-width:768px){
  .tag-bg{
    background-attachment:scroll;
  }
}

@media(max-width:560px){
  .tag-title{font-size:30px;}
  .tag-item{
    flex:0 0 100%;
  }
}
/* <==========hotel==========> */

.templeStay-section{
  background:#0F1B2E;
  padding:100px 24px 110px;
}
.templeStay-wrap{
  max-width:1080px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.templeStay-media{
  position:relative;
}
.templeStay-media img{
  width:100%;
  height:480px;
  object-fit:cover;
  border-radius:20px;
  display:block;
}
.templeStay-badge{
  position:absolute;
  top:24px;
  left:24px;
  background:#E8A33D;
  color:#0F1B2E;
  font-size:12px;
  font-weight:700;
  padding:8px 16px;
  border-radius:20px;
}
.templeStay-floatCard{
  position:absolute;
  bottom:-28px;
  right:-24px;
  background:#16233A;
  border:1px solid rgba(232,163,61,0.35);
  border-radius:16px;
  padding:18px 26px;
  text-align:center;
  min-width:150px;
}
.templeStay-floatNum{
  display:block;
  font-family:Georgia,'Playfair Display',serif;
  font-size:26px;
  color:#E8A33D;
}
.templeStay-floatText{
  display:block;
  font-size:11.5px;
  color:#A9B2C0;
  margin-top:4px;
}

.templeStay-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#E8A33D;
  margin-bottom:14px;
}
.templeStay-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:40px;
  color:#FFFFFF;
  margin:0 0 14px;
  line-height:1.2;
}
.templeStay-title i{
  color:#E2694A;
  font-style:italic;
}
.templeStay-rating{
  font-size:13px;
  color:#E8A33D;
  letter-spacing:1px;
  margin-bottom:10px;
}
.templeStay-rating span{
  color:#8590A0;
  letter-spacing:normal;
  margin-left:4px;
}
.templeStay-loc{
  font-size:13px;
  color:#8590A0;
  margin:0 0 20px;
}
.templeStay-desc{
  font-size:15px;
  color:#A9B2C0;
  line-height:1.75;
  margin:0 0 28px;
}

.templeStay-amenities{
  list-style:none;
  margin:0 0 32px;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 16px;
}
.templeStay-amenities li span{
  font-size:12.5px;
  color:#C6CCD6;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  padding:8px 14px;
  border-radius:20px;
  display:inline-block;
}

.templeStay-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:24px;
  border-top:1px dashed rgba(255,255,255,0.1);
}
.templeStay-price{
  font-family:Georgia,'Playfair Display',serif;
  font-size:24px;
  color:#FFFFFF;
  margin:0;
}
.templeStay-price span{
  font-family:inherit;
  font-size:12px;
  color:#8590A0;
  font-weight:400;
}
.templeStay-taxNote{
  font-size:11.5px;
  color:#8590A0;
  margin:4px 0 0;
}
.templeStay-cta{
  font-size:13.5px;
  font-weight:700;
  color:#0F1B2E;
  text-decoration:none;
  background:#E8A33D;
  padding:14px 28px;
  border-radius:8px;
  transition:background .2s ease;
  white-space:nowrap;
}
.templeStay-cta:hover{
  background:#E2694A;
  color:#FFFFFF;
}

@media(max-width:860px){
  .templeStay-wrap{
    grid-template-columns:1fr;
    gap:70px;
  }
  .templeStay-media img{
    height:360px;
  }
}

@media(max-width:500px){
  .templeStay-title{font-size:30px;}
  .templeStay-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }
  .templeStay-cta{
    width:100%;
    text-align:center;
  }
  .templeStay-floatCard{
    right:12px;
    bottom:-24px;
    padding:14px 18px;
    min-width:auto;
  }
}
.stayPerk-section{
  background:#FAF7F0;
  padding:100px 24px 120px;
}
.stayPerk-head{
  max-width:600px;
  margin:0 auto 60px;
  text-align:center;
}
.stayPerk-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.stayPerk-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:40px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.stayPerk-title i{
  color:#E8A33D;
  font-style:italic;
}
.stayPerk-sub{
  font-size:15.5px;
  color:#7A7668;
  line-height:1.6;
  margin:0;
}

.stayPerk-bento{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:170px;
  gap:20px;
}
.stayPerk-tile-quote{
  grid-column: span 4;
    background: #FBEBD3;
    border-color: #FBEBD3;
    justify-content: center;
    text-align: center;
}

.stayPerk-tile{
  background:#FFFFFF;
  border:1px solid #EFE9DA;
  border-radius:18px;
  padding:28px;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease,box-shadow .25s ease;
}
.stayPerk-tile:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 34px rgba(30,42,58,0.08);
}
.stayPerk-icon{
  font-size:24px;
  margin-bottom:14px;
}
.stayPerk-tile h3{
  font-family:Georgia,'Playfair Display',serif;
  font-size:18px;
  color:#1E2A3A;
  margin:0 0 8px;
}
.stayPerk-tile p{
  font-size:13px;
  color:#7A7668;
  line-height:1.6;
  margin:0;
}

.stayPerk-tile-big{
  grid-column:span 2;
  grid-row:span 2;
  background:#1E2A3A;
  border-color:#1E2A3A;
  justify-content:space-between;
}
.stayPerk-tile-big h3{
  color:#FFFFFF;
  font-size:24px;
}
.stayPerk-tile-big p{
  color:#A9B2C0;
  font-size:14px;
}
.stayPerk-count{
  margin-top:auto;
  padding-top:18px;
  border-top:1px dashed rgba(255,255,255,0.15);
}
.stayPerk-count strong{
  display:block;
  font-family:Georgia,'Playfair Display',serif;
  font-size:26px;
  color:#E8A33D;
}
.stayPerk-count span{
  font-size:11.5px;
  color:#8590A0;
}

.stayPerk-tile-wide{
  grid-column:span 2;
  flex-direction:row;
  align-items:center;
  gap:20px;
}
.stayPerk-tile-wide .stayPerk-icon{
  margin-bottom:0;
  flex-shrink:0;
}

.stayPerk-tile-quote{
  grid-column:span 2;
  background:#FBEBD3;
  border-color:#FBEBD3;
  justify-content:center;
}
.stayPerk-tile-quote p{
  font-family:Georgia,'Playfair Display',serif;
  font-style:italic;
  font-size:15px;
  color:#1E2A3A;
  line-height:1.5;
  margin:0 0 10px;
}
.stayPerk-tile-quote span{
  font-size:12px;
  color:#8A6A2E;
  font-weight:600;
}

@media(max-width:900px){
  .stayPerk-bento{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:auto;
  }
  .stayPerk-tile-big{
    grid-column:span 2;
    grid-row:auto;
  }
  .stayPerk-tile-wide,
  .stayPerk-tile-quote{
    grid-column:span 2;
  }
}

@media(max-width:560px){
  .stayPerk-title{font-size:30px;}
  .stayPerk-bento{
    grid-template-columns:1fr;
  }
  .stayPerk-tile-wide{
    flex-direction:column;
  }
  .stayPerk-tile-big,
  .stayPerk-tile-wide,
  .stayPerk-tile-quote{
    grid-column:span 1;
  }
}
.guestDeck-section{
  background:#FAF7F0;
  padding:100px 24px 120px;
}
.guestDeck-head{
  max-width:600px;
  margin:0 auto 60px;
  text-align:center;
}
.guestDeck-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.guestDeck-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:40px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.guestDeck-title i{
  color:#E8A33D;
  font-style:italic;
}
.guestDeck-sub{
  font-size:15.5px;
  color:#7A7668;
  line-height:1.6;
  margin:0;
}

.guestDeck-wrap{
  max-width:1080px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:70px;
}
.guestDeck-stack{
  position:relative;
  flex:1.3;
  height:300px;
}
.guestDeck-card{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  max-width:400px;
  background:#FFFFFF;
  border:1px solid #EFE9DA;
  border-radius:18px;
  padding:30px 28px;
  box-shadow:0 20px 40px rgba(30,42,58,0.1);
  transition:transform .3s ease,box-shadow .3s ease;
}
.guestDeck-card:nth-child(1){
  transform:rotate(-4deg);
  z-index:3;
}
.guestDeck-card:nth-child(2){
  transform:translate(26px,20px) rotate(2deg);
  z-index:2;
}
.guestDeck-card:nth-child(3){
  transform:translate(52px,40px) rotate(6deg);
  z-index:1;
}
.guestDeck-stack:hover .guestDeck-card:nth-child(1){
  transform:rotate(-7deg) translateY(-6px);
}
.guestDeck-stack:hover .guestDeck-card:nth-child(2){
  transform:translate(26px,20px) rotate(4deg) translateY(-4px);
}
.guestDeck-stack:hover .guestDeck-card:nth-child(3){
  transform:translate(52px,40px) rotate(8deg) translateY(-2px);
}

.guestDeck-stars{
  color:#E8A33D;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:14px;
}
.guestDeck-text{
  font-family:Georgia,'Playfair Display',serif;
  font-style:italic;
  font-size:16px;
  color:#1E2A3A;
  line-height:1.6;
  margin:0 0 22px;
}
.guestDeck-person{
  display:flex;
  align-items:center;
  gap:12px;
}
.guestDeck-avatar{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#FBEBD3;
  color:#C9791E;
  font-size:12.5px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.guestDeck-person strong{
  display:block;
  font-size:13.5px;
  color:#1E2A3A;
}
.guestDeck-person span{
  font-size:11.5px;
  color:#9A9689;
}

.guestDeck-side{
  flex:1;
  min-width:240px;
}
.guestDeck-score{
  margin-bottom:36px;
}
.guestDeck-score strong{
  font-family:Georgia,'Playfair Display',serif;
  font-size:48px;
  color:#1E2A3A;
  line-height:1;
}
.guestDeck-scoreStars{
  display:block;
  color:#E8A33D;
  font-size:15px;
  letter-spacing:2px;
  margin:8px 0 6px;
}
.guestDeck-score p{
  font-size:12.5px;
  color:#9A9689;
  margin:0;
}

.guestDeck-bars{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.guestDeck-bar span{
  display:block;
  font-size:12.5px;
  color:#5C594F;
  margin-bottom:8px;
}
.guestDeck-track{
  width:100%;
  height:6px;
  background:#EFE9DA;
  border-radius:10px;
  overflow:hidden;
}
.guestDeck-fill{
  height:100%;
  background:#C85A3E;
  border-radius:10px;
}

@media(max-width:860px){
  .guestDeck-wrap{
    flex-direction:column;
    gap:60px;
  }
  .guestDeck-stack{
    width:100%;
    max-width:400px;
    margin:0 auto;
  }
  .guestDeck-side{
    width:100%;
    max-width:400px;
  }
}

@media(max-width:520px){
  .guestDeck-title{font-size:30px;}
  .guestDeck-stack{
    height:340px;
  }
  .guestDeck-card{
    padding:24px 22px;
  }
}
.stayRooms-section{
  background:#FAF7F0;
  padding:100px 24px 120px;
}
.stayRooms-head{
  max-width:600px;
  margin:0 auto 60px;
  text-align:center;
}
.stayRooms-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.stayRooms-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:40px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.stayRooms-title i{
  color:#E8A33D;
  font-style:italic;
}
.stayRooms-sub{
  font-size:15.5px;
  color:#7A7668;
  line-height:1.6;
  margin:0;
}

.stayRooms-body{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:24px;
}

.stayRooms-stage{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  height:560px;
}
.stayRooms-stage img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  animation:stayRoomsFade .6s ease forwards;
}
@keyframes stayRoomsFade{
  from{opacity:0;transform:scale(1.04);}
  to{opacity:1;transform:scale(1);}
}
.stayRooms-stage::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(15,20,15,0.82) 0%,rgba(15,20,15,0.2) 50%,transparent 75%);
}
.stayRooms-stageInfo{
  position:absolute;
  left:32px;
  right:32px;
  bottom:32px;
  color:#FFFFFF;
  z-index:2;
}
.stayRooms-stageTag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  background:#E8A33D;
  color:#1E2A3A;
  padding:5px 12px;
  border-radius:20px;
  margin-bottom:14px;
}
.stayRooms-stageInfo h3{
  font-family:Georgia,'Playfair Display',serif;
  font-size:28px;
  margin:0 0 10px;
}
.stayRooms-stageInfo p{
  font-size:14px;
  color:#E4E1D8;
  line-height:1.6;
  max-width:420px;
  margin:0;
}
.stayRooms-stageFooter{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:24px;
  padding-top:20px;
  border-top:1px dashed rgba(255,255,255,0.25);
}
.stayRooms-stagePrice{
  font-family:Georgia,'Playfair Display',serif;
  font-size:20px;
}
.stayRooms-stagePrice i{
  font-family:inherit;
  font-style:normal;
  font-size:11px;
  color:#D8D4C8;
  margin-left:3px;
}
.stayRooms-stageCta{
  font-size:13px;
  font-weight:700;
  color:#1E2A3A;
  text-decoration:none;
  background:#FFFFFF;
  padding:12px 22px;
  border-radius:8px;
  transition:background .2s ease;
}
.stayRooms-stageCta:hover{
  background:#E8A33D;
}

.stayRooms-side{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.stayRooms-total{
  background:#1E2A3A;
  border-radius:16px;
  padding:24px 26px;
  display:flex;
  flex-direction:column;
}
.stayRooms-totalNum{
  font-family:Georgia,'Playfair Display',serif;
  font-size:44px;
  color:#E8A33D;
  line-height:1;
}
.stayRooms-totalText{
  font-size:12.5px;
  color:#C9CDD4;
  margin-top:8px;
  line-height:1.5;
}

.stayRooms-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.stayRooms-item{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
  background:#FFFFFF;
  border:1px solid rgba(30,42,58,0.08);
  border-radius:14px;
  padding:16px 18px;
  cursor:pointer;
  text-align:left;
  overflow:hidden;
  transition:border-color .25s ease,transform .25s ease;
}
.stayRooms-item:hover{
  transform:translateX(4px);
}
.stayRooms-item.is-active{
  border-color:#E8A33D;
}
.stayRooms-itemCount{
  font-family:Georgia,'Playfair Display',serif;
  font-size:20px;
  color:#C85A3E;
  min-width:34px;
}
.stayRooms-itemInfo{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.stayRooms-itemInfo strong{
  font-size:14.5px;
  color:#1E2A3A;
  font-weight:600;
}
.stayRooms-itemInfo em{
  font-size:12px;
  color:#8A8677;
  font-style:normal;
}
.stayRooms-itemBar{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:#E8A33D;
  transform:scaleY(0);
  transition:transform .25s ease;
}
.stayRooms-item.is-active .stayRooms-itemBar{
  transform:scaleY(1);
}

@media(max-width:860px){
  .stayRooms-body{
    grid-template-columns:1fr;
  }
  .stayRooms-stage{
    height:420px;
  }
}

@media(max-width:560px){
  .stayRooms-title{font-size:30px;}
  .stayRooms-stageInfo h3{font-size:22px;}
  .stayRooms-stageFooter{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }
  .stayRooms-stageCta{width:100%;text-align:center;}
}
/* <==========gallery==========> */

.lumeGallery-section{
  background:#0B121F;
  padding:100px 24px 110px;
}
.lumeGallery-head{
  max-width:620px;
  margin:0 auto 40px;
  text-align:center;
}
.lumeGallery-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#E8A33D;
  margin-bottom:14px;
}
.lumeGallery-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:42px;
  color:#FFFFFF;
  margin:0 0 18px;
  line-height:1.2;
}
.lumeGallery-title i{
  color:#E2694A;
  font-style:italic;
}
.lumeGallery-sub{
  font-size:15.5px;
  color:#8D95A5;
  line-height:1.7;
  margin:0;
}

.lumeGallery-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:50px;
}
.lumeGallery-filterBtn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.14);
  color:#A9B2C0;
  font-size:12.5px;
  font-weight:600;
  padding:9px 20px;
  border-radius:30px;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.lumeGallery-filterBtn:hover{
  border-color:#E8A33D;
  color:#FFFFFF;
}
.lumeGallery-filterActive{
  background:#E8A33D;
  border-color:#E8A33D;
  color:#0B121F;
}

.lumeGallery-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:190px;
  gap:16px;
}
.lumeGallery-item-tall{
  grid-row:span 2;
}
.lumeGallery-item-wide{
  grid-column:span 2;
}

.lumeGallery-item{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  isolation:isolate;
}
.lumeGallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease,filter .4s ease;
  filter:grayscale(0.15) brightness(0.92);
}
.lumeGallery-item:hover img{
  transform:scale(1.08);
  filter:grayscale(0) brightness(1);
}

.lumeGallery-veil{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:16px;
  background:linear-gradient(0deg,rgba(11,18,31,0.85) 0%,rgba(11,18,31,0.05) 55%,transparent 75%);
  opacity:0;
  transition:opacity .3s ease;
}
.lumeGallery-item:hover .lumeGallery-veil{
  opacity:1;
}
.lumeGallery-tag{
  font-size:12.5px;
  font-weight:700;
  color:#FFFFFF;
  letter-spacing:.4px;
}
.lumeGallery-zoom{
  position:absolute;
  top:14px;
  right:14px;
  width:32px;
  height:32px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(6px);
  color:#FFFFFF;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lumeGallery-more{
  text-align:center;
  margin-top:50px;
}
.lumeGallery-moreLink{
  display:inline-block;
  font-size:14px;
  font-weight:700;
  color:#0B121F;
  background:#E8A33D;
  text-decoration:none;
  padding:14px 30px;
  border-radius:8px;
  transition:transform .2s ease,box-shadow .2s ease;
}
.lumeGallery-moreLink:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(232,163,61,0.25);
}

.lumeGallery-lightbox{
  position:fixed;
  inset:0;
  background:rgba(5,8,14,0.95);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:30px;
}
.lumeGallery-lightboxOpen{
  display:flex;
}
.lumeGallery-lightboxImg{
  max-width:88%;
  max-height:85vh;
  border-radius:10px;
  box-shadow:0 30px 60px rgba(0,0,0,0.5);
}
.lumeGallery-lightboxClose{
  position:absolute;
  top:26px;
  right:30px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.25);
  background:transparent;
  color:#FFFFFF;
  font-size:18px;
  cursor:pointer;
}
.lumeGallery-lightboxClose:hover{
  background:rgba(255,255,255,0.1);
}

@media(max-width:980px){
  .lumeGallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .lumeGallery-item-wide{
    grid-column:span 2;
  }
}

@media(max-width:560px){
  .lumeGallery-title{font-size:32px;}
  .lumeGallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:220px;
  }
  .lumeGallery-item-tall,
  .lumeGallery-item-wide{
    grid-column:span 1;
    grid-row:span 1;
  }
}
.tripSnap-section{
  background:#FAF7F0;
  padding:100px 24px 120px;
}
.tripSnap-head{
  max-width:620px;
  margin:0 auto 40px;
  text-align:center;
}
.tripSnap-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.tripSnap-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:40px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.tripSnap-title i{
  color:#E8A33D;
  font-style:italic;
}
.tripSnap-sub{
  font-size:15.5px;
  color:#7A7668;
  line-height:1.6;
  margin:0;
}

.tripSnap-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:60px;
}
.tripSnap-filterBtn{
  background:#FFFFFF;
  border:1px solid #EFE9DA;
  color:#7A7668;
  font-size:12.5px;
  font-weight:600;
  padding:9px 20px;
  border-radius:30px;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.tripSnap-filterBtn:hover{
  border-color:#C85A3E;
  color:#1E2A3A;
}
.tripSnap-filterActive{
  background:#1E2A3A;
  border-color:#1E2A3A;
  color:#FAF7F0;
}

.tripSnap-wall{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px 32px;
}
.tripSnap-poloroid{
  background:#FFFFFF;
  padding:14px 14px 46px;
  width:230px;
  box-shadow:0 16px 30px rgba(30,42,58,0.1);
  transition:transform .3s ease,box-shadow .3s ease;
  cursor:pointer;
}
.tripSnap-poloroid:hover{
  transform:rotate(0deg) translateY(-8px) scale(1.03) !important;
  box-shadow:0 24px 44px rgba(30,42,58,0.18);
  z-index:2;
}
.tripSnap-photo{
  overflow:hidden;
}
.tripSnap-photo img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  filter:sepia(0.06);
  transition:transform .5s ease;
}
.tripSnap-poloroid:hover .tripSnap-photo img{
  transform:scale(1.08);
}
.tripSnap-caption{
  font-family:Georgia,'Playfair Display',serif;
  font-style:italic;
  font-size:13.5px;
  color:#5C594F;
  text-align:center;
  margin:16px 0 0;
}

.tripSnap-more{
  text-align:center;
  margin-top:60px;
}
.tripSnap-moreLink{
  display:inline-block;
  font-size:14px;
  font-weight:700;
  color:#1E2A3A;
  text-decoration:none;
  border:1px solid #1E2A3A;
  padding:13px 28px;
  border-radius:8px;
  transition:background .2s ease,color .2s ease;
}
.tripSnap-moreLink:hover{
  background:#1E2A3A;
  color:#FAF7F0;
}

.tripSnap-lightbox{
  position:fixed;
  inset:0;
  background:rgba(30,42,58,0.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:30px;
}
.tripSnap-lightboxOpen{
  display:flex;
}
.tripSnap-lightboxImg{
  max-width:88%;
  max-height:85vh;
  border-radius:6px;
  box-shadow:0 30px 60px rgba(0,0,0,0.4);
}
.tripSnap-lightboxClose{
  position:absolute;
  top:26px;
  right:30px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.3);
  background:transparent;
  color:#FFFFFF;
  font-size:18px;
  cursor:pointer;
}
.tripSnap-lightboxClose:hover{
  background:rgba(255,255,255,0.12);
}

@media(max-width:560px){
  .tripSnap-title{font-size:30px;}
  .tripSnap-poloroid{
    width:100%;
    max-width:280px;
  }
}
/* <=========contact=========> */

.reachOut-section{
  background:#FAF7F0;
  padding:100px 24px 120px;
}
.reachOut-head{
  max-width:600px;
  margin:0 auto 60px;
  text-align:center;
}
.reachOut-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#C85A3E;
  margin-bottom:14px;
}
.reachOut-title{
  font-family:Georgia,'Playfair Display',serif;
  font-size:40px;
  color:#1E2A3A;
  margin:0 0 18px;
  line-height:1.2;
}
.reachOut-title i{
  color:#E8A33D;
  font-style:italic;
}
.reachOut-sub{
  font-size:15.5px;
  color:#7A7668;
  line-height:1.6;
  margin:0;
}

.reachOut-panel{
  max-width:1080px;
  margin:0 auto;
  display:flex;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(30,42,58,0.12);
}

.reachOut-info{
  flex:0.9;
  background:#1E2A3A;
  padding:48px 40px;
  display:flex;
  flex-direction:column;
}
.reachOut-infoRow{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:26px;
}
.reachOut-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(232,163,61,0.15);
  color:#E8A33D;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.reachOut-label{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  color:#8590A0;
  margin-bottom:4px;
}
.reachOut-infoRow p{
  font-size:14px;
  color:#FFFFFF;
  margin:0;
  line-height:1.5;
}

.reachOut-whatsapp{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#25D366;
  color:#0F1B2E;
  font-size:13.5px;
  font-weight:700;
  text-decoration:none;
  padding:13px 20px;
  border-radius:8px;
  transition:transform .2s ease;
}
.reachOut-whatsapp:hover{
  transform:translateY(-2px);
}

.reachOut-social{
  margin-top:auto;
  padding-top:36px;
  display:flex;
  gap:18px;
}
.reachOut-social a{
  font-size:12px;
  color:#A9B2C0;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color .2s ease,border-color .2s ease;
}
.reachOut-social a:hover{
  color:#E8A33D;
  border-color:#E8A33D;
}

.reachOut-contactCard{
  flex:1.3;
  background:#FFFFFF;
  padding:48px 44px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.reachOut-contactHead{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:34px;
  padding-bottom:18px;
  border-bottom:1px dashed #E4DFD0;
}
.reachOut-formTag{
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  color:#C85A3E;
}
.reachOut-formNo{
  font-size:11px;
  color:#B7B09C;
}

.reachOut-ring{
  position:relative;
  width:78px;
  height:78px;
  border-radius:50%;
  background:rgba(232,163,61,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
}
.reachOut-ring i{
  font-size:28px;
  color:#C85A3E;
  animation:reachOutShake 3s ease-in-out infinite;
}
.reachOut-ringPulse{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px solid #E8A33D;
  animation:reachOutPulse 2.4s ease-out infinite;
}

@keyframes reachOutPulse{0%{transform:scale(1);opacity:0.7;}100%{transform:scale(1.7);opacity:0;}}
@keyframes reachOutShake{0%,100%{transform:rotate(0deg);}5%{transform:rotate(-15deg);}10%{transform:rotate(12deg);}15%{transform:rotate(-8deg);}20%{transform:rotate(0deg);}}

.reachOut-contactTitle{
  font-family:Georgia,'Playfair Display',serif;
  font-size:24px;
  color:#1E2A3A;
  margin:0 0 12px;
}
.reachOut-contactSub{
  font-size:13.5px;
  color:#7A7668;
  line-height:1.6;
  max-width:360px;
  margin:0 0 32px;
}

.reachOut-ctaRow{
  width:100%;
  display:flex;
  gap:14px;
  margin-bottom:20px;
}
.reachOut-callBtn,.reachOut-waBtn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:transform .2s ease;
}
.reachOut-callBtn{
  background:#1E2A3A;
  color:#FAF7F0;
}
.reachOut-waBtn{
  background:#25D366;
  color:#0F1B2E;
}
.reachOut-callBtn:hover,.reachOut-waBtn:hover{
  transform:translateY(-3px);
}
.reachOut-callBtn i,.reachOut-waBtn i{
  font-size:16px;
}

.reachOut-note{
  text-align:center;
  font-size:11.5px;
  color:#9A9689;
  margin:0;
}

@media(max-width:900px){
  .reachOut-panel{
    flex-direction:column;
  }
  .reachOut-info{
    padding:40px 32px;
  }
  .reachOut-contactCard{
    padding:40px 28px;
  }
}

@media(max-width:560px){
  .reachOut-title{font-size:30px;}
  .reachOut-ctaRow{flex-direction:column;}
}
/* <=======book your yatra=======> */

.bookYatra-section{background:#FAF7F0;padding:100px 24px 120px;}
.bookYatra-head{max-width:600px;margin:0 auto 60px;text-align:center;}
.bookYatra-eyebrow{display:inline-block;font-size:13px;font-weight:700;letter-spacing:1.5px;color:#C85A3E;margin-bottom:14px;}
.bookYatra-title{font-family:Georgia,'Playfair Display',serif;font-size:40px;color:#1E2A3A;margin:0 0 18px;line-height:1.2;}
.bookYatra-title i{color:#E8A33D;font-style:italic;}
.bookYatra-sub{font-size:15.5px;color:#7A7668;line-height:1.6;margin:0;}

.bookYatra-panel{max-width:1080px;margin:0 auto;display:flex;border-radius:22px;overflow:hidden;box-shadow:0 30px 60px rgba(30,42,58,0.12);}

.bookYatra-side{position:relative;flex:0.9;background:#1E2A3A;padding:48px 40px;display:flex;flex-direction:column;}
.bookYatra-punch{position:absolute;right:-11px;width:22px;height:22px;border-radius:50%;background:#FAF7F0;}
.bookYatra-punch1{top:36px;}
.bookYatra-punch2{bottom:36px;}

.bookYatra-sideTag{font-size:11px;font-weight:700;letter-spacing:1px;color:#E8A33D;margin-bottom:20px;}
.bookYatra-list{list-style:none;margin:0;padding:0;}
.bookYatra-list li{display:flex;align-items:flex-start;gap:10px;font-size:13.5px;color:#D8DCE3;margin-bottom:14px;line-height:1.4;}
.bookYatra-list li span{flex-shrink:0;width:18px;height:18px;border-radius:50%;background:rgba(232,163,61,0.15);color:#E8A33D;font-size:11px;display:flex;align-items:center;justify-content:center;margin-top:1px;}

.bookYatra-contactCard{flex:1.3;background:#FFFFFF;padding:48px 44px;display:flex;flex-direction:column;align-items:center;text-align:center;}
.bookYatra-contactHead{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:34px;padding-bottom:18px;border-bottom:1px dashed #E4DFD0;}
.bookYatra-formTag{font-size:11px;font-weight:700;letter-spacing:1px;color:#C85A3E;}
.bookYatra-formNo{font-size:11px;color:#B7B09C;}

.bookYatra-ring{position:relative;width:78px;height:78px;border-radius:50%;background:rgba(232,163,61,0.12);display:flex;align-items:center;justify-content:center;margin-bottom:26px;}
.bookYatra-ring i{font-size:28px;color:#C85A3E;animation:bookYatraShake 3s ease-in-out infinite;}
.bookYatra-ringPulse{position:absolute;inset:0;border-radius:50%;border:2px solid #E8A33D;animation:bookYatraPulse 2.4s ease-out infinite;}

@keyframes bookYatraPulse{0%{transform:scale(1);opacity:0.7;}100%{transform:scale(1.7);opacity:0;}}
@keyframes bookYatraShake{0%,100%{transform:rotate(0deg);}5%{transform:rotate(-15deg);}10%{transform:rotate(12deg);}15%{transform:rotate(-8deg);}20%{transform:rotate(0deg);}}

.bookYatra-contactTitle{font-family:Georgia,'Playfair Display',serif;font-size:24px;color:#1E2A3A;margin:0 0 12px;}
.bookYatra-contactSub{font-size:13.5px;color:#7A7668;line-height:1.6;max-width:360px;margin:0 0 32px;}

.bookYatra-ctaRow{width:100%;display:flex;gap:14px;margin-bottom:20px;}
.bookYatra-callBtn,.bookYatra-waBtn{flex:1;display:flex;align-items:center;justify-content:center;gap:8px;padding:15px;border-radius:10px;font-size:14px;font-weight:700;text-decoration:none;transition:transform .2s ease;}
.bookYatra-callBtn{background:#1E2A3A;color:#FAF7F0;}
.bookYatra-waBtn{background:#25D366;color:#0F1B2E;}
.bookYatra-callBtn:hover,.bookYatra-waBtn:hover{transform:translateY(-3px);}
.bookYatra-callBtn i,.bookYatra-waBtn i{font-size:16px;}

.bookYatra-note{text-align:center;font-size:11.5px;color:#9A9689;margin:0;}

@media(max-width:900px){
  .bookYatra-panel{flex-direction:column;}
  .bookYatra-side{padding:40px 32px;}
  .bookYatra-contactCard{padding:40px 28px;}
  .bookYatra-punch{display:none;}
}
@media(max-width:560px){
  .bookYatra-title{font-size:30px;}
  .bookYatra-ctaRow{flex-direction:column;}
}

.bookHoliday-section{background:#FAF7F0;padding:100px 24px 120px;}
.bookHoliday-head{max-width:600px;margin:0 auto 60px;text-align:center;}
.bookHoliday-eyebrow{display:inline-block;font-size:13px;font-weight:700;letter-spacing:1.5px;color:#C85A3E;margin-bottom:14px;}
.bookHoliday-title{font-family:Georgia,'Playfair Display',serif;font-size:40px;color:#1E2A3A;margin:0 0 18px;line-height:1.2;}
.bookHoliday-title i{color:#E8A33D;font-style:italic;}
.bookHoliday-sub{font-size:15.5px;color:#7A7668;line-height:1.6;margin:0;}

.bookHoliday-panel{max-width:1080px;margin:0 auto;display:flex;border-radius:22px;overflow:hidden;box-shadow:0 30px 60px rgba(30,42,58,0.12);}

.bookHoliday-side{position:relative;flex:0.9;background:#1E2A3A;padding:48px 40px;display:flex;flex-direction:column;}
.bookHoliday-punch{position:absolute;right:-11px;width:22px;height:22px;border-radius:50%;background:#FAF7F0;}
.bookHoliday-punch1{top:36px;}
.bookHoliday-punch2{bottom:36px;}

.bookHoliday-sideTag{font-size:11px;font-weight:700;letter-spacing:1px;color:#E8A33D;margin-bottom:20px;}
.bookHoliday-list{list-style:none;margin:0;padding:0;}
.bookHoliday-list li{display:flex;align-items:flex-start;gap:10px;font-size:13.5px;color:#D8DCE3;margin-bottom:14px;line-height:1.4;}
.bookHoliday-list li span{flex-shrink:0;width:18px;height:18px;border-radius:50%;background:rgba(232,163,61,0.15);color:#E8A33D;font-size:11px;display:flex;align-items:center;justify-content:center;margin-top:1px;}

.bookHoliday-contactCard{flex:1.3;background:#FFFFFF;padding:48px 44px;display:flex;flex-direction:column;align-items:center;text-align:center;}
.bookHoliday-contactHead{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:34px;padding-bottom:18px;border-bottom:1px dashed #E4DFD0;}
.bookHoliday-formTag{font-size:11px;font-weight:700;letter-spacing:1px;color:#C85A3E;}
.bookHoliday-formNo{font-size:11px;color:#B7B09C;}

.bookHoliday-ring{position:relative;width:78px;height:78px;border-radius:50%;background:rgba(232,163,61,0.12);display:flex;align-items:center;justify-content:center;margin-bottom:26px;}
.bookHoliday-ring i{font-size:28px;color:#C85A3E;animation:bookHolidayShake 3s ease-in-out infinite;}
.bookHoliday-ringPulse{position:absolute;inset:0;border-radius:50%;border:2px solid #E8A33D;animation:bookHolidayPulse 2.4s ease-out infinite;}

@keyframes bookHolidayPulse{0%{transform:scale(1);opacity:0.7;}100%{transform:scale(1.7);opacity:0;}}
@keyframes bookHolidayShake{0%,100%{transform:rotate(0deg);}5%{transform:rotate(-15deg);}10%{transform:rotate(12deg);}15%{transform:rotate(-8deg);}20%{transform:rotate(0deg);}}

.bookHoliday-contactTitle{font-family:Georgia,'Playfair Display',serif;font-size:24px;color:#1E2A3A;margin:0 0 12px;}
.bookHoliday-contactSub{font-size:13.5px;color:#7A7668;line-height:1.6;max-width:360px;margin:0 0 32px;}

.bookHoliday-ctaRow{width:100%;display:flex;gap:14px;margin-bottom:20px;}
.bookHoliday-callBtn,.bookHoliday-waBtn{flex:1;display:flex;align-items:center;justify-content:center;gap:8px;padding:15px;border-radius:10px;font-size:14px;font-weight:700;text-decoration:none;transition:transform .2s ease;}
.bookHoliday-callBtn{background:#1E2A3A;color:#FAF7F0;}
.bookHoliday-waBtn{background:#25D366;color:#0F1B2E;}
.bookHoliday-callBtn:hover,.bookHoliday-waBtn:hover{transform:translateY(-3px);}
.bookHoliday-callBtn i,.bookHoliday-waBtn i{font-size:16px;}

.bookHoliday-note{text-align:center;font-size:11.5px;color:#9A9689;margin:0;}

@media(max-width:900px){
  .bookHoliday-panel{flex-direction:column;}
  .bookHoliday-side{padding:40px 32px;}
  .bookHoliday-contactCard{padding:40px 28px;}
  .bookHoliday-punch{display:none;}
}
@media(max-width:560px){
  .bookHoliday-title{font-size:30px;}
  .bookHoliday-ctaRow{flex-direction:column;}
}

.templeStay-section{background:#FAF7F0;padding:100px 24px 120px;}
.templeStay-head{max-width:600px;margin:0 auto 60px;text-align:center;}
.templeStay-eyebrow{display:inline-block;font-size:13px;font-weight:700;letter-spacing:1.5px;color:#C85A3E;margin-bottom:14px;}
.templeStay-title{font-family:Georgia,'Playfair Display',serif;font-size:40px;color:#1E2A3A;margin:0 0 18px;line-height:1.2;}
.templeStay-title i{color:#E8A33D;font-style:italic;}
.templeStay-sub{font-size:15.5px;color:#7A7668;line-height:1.6;margin:0;}

.templeStay-panel{max-width:1080px;margin:0 auto;display:flex;border-radius:22px;overflow:hidden;box-shadow:0 30px 60px rgba(30,42,58,0.12);}

.templeStay-side{position:relative;flex:0.9;background:#1E2A3A;padding:48px 40px;display:flex;flex-direction:column;}
.templeStay-punch{position:absolute;right:-11px;width:22px;height:22px;border-radius:50%;background:#FAF7F0;}
.templeStay-punch1{top:36px;}
.templeStay-punch2{bottom:36px;}

.templeStay-sideTag{font-size:11px;font-weight:700;letter-spacing:1px;color:#E8A33D;margin-bottom:20px;}
.templeStay-list{list-style:none;margin:0;padding:0;}
.templeStay-list li{display:flex;align-items:flex-start;gap:10px;font-size:13.5px;color:#D8DCE3;margin-bottom:14px;line-height:1.4;}
.templeStay-list li span{flex-shrink:0;width:18px;height:18px;border-radius:50%;background:rgba(232,163,61,0.15);color:#E8A33D;font-size:11px;display:flex;align-items:center;justify-content:center;margin-top:1px;}

.templeStay-contactCard{flex:1.3;background:#FFFFFF;padding:48px 44px;display:flex;flex-direction:column;align-items:center;text-align:center;}
.templeStay-contactHead{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:34px;padding-bottom:18px;border-bottom:1px dashed #E4DFD0;}
.templeStay-formTag{font-size:11px;font-weight:700;letter-spacing:1px;color:#C85A3E;}
.templeStay-formNo{font-size:11px;color:#B7B09C;}

.templeStay-ring{position:relative;width:78px;height:78px;border-radius:50%;background:rgba(232,163,61,0.12);display:flex;align-items:center;justify-content:center;margin-bottom:26px;}
.templeStay-ring i{font-size:28px;color:#C85A3E;animation:templeStayShake 3s ease-in-out infinite;}
.templeStay-ringPulse{position:absolute;inset:0;border-radius:50%;border:2px solid #E8A33D;animation:templeStayPulse 2.4s ease-out infinite;}

@keyframes templeStayPulse{0%{transform:scale(1);opacity:0.7;}100%{transform:scale(1.7);opacity:0;}}
@keyframes templeStayShake{0%,100%{transform:rotate(0deg);}5%{transform:rotate(-15deg);}10%{transform:rotate(12deg);}15%{transform:rotate(-8deg);}20%{transform:rotate(0deg);}}

.templeStay-contactTitle{font-family:Georgia,'Playfair Display',serif;font-size:24px;color:#1E2A3A;margin:0 0 12px;}
.templeStay-contactSub{font-size:13.5px;color:#7A7668;line-height:1.6;max-width:360px;margin:0 0 32px;}

.templeStay-ctaRow{width:100%;display:flex;gap:14px;margin-bottom:20px;}
.templeStay-callBtn,.templeStay-waBtn{flex:1;display:flex;align-items:center;justify-content:center;gap:8px;padding:15px;border-radius:10px;font-size:14px;font-weight:700;text-decoration:none;transition:transform .2s ease;}
.templeStay-callBtn{background:#1E2A3A;color:#FAF7F0;}
.templeStay-waBtn{background:#25D366;color:#0F1B2E;}
.templeStay-callBtn:hover,.templeStay-waBtn:hover{transform:translateY(-3px);}
.templeStay-callBtn i,.templeStay-waBtn i{font-size:16px;}

.templeStay-note{text-align:center;font-size:11.5px;color:#9A9689;margin:0;}

@media(max-width:900px){
  .templeStay-panel{flex-direction:column;}
  .templeStay-side{padding:40px 32px;}
  .templeStay-contactCard{padding:40px 28px;}
  .templeStay-punch{display:none;}
}
@media(max-width:560px){
  .templeStay-title{font-size:30px;}
  .templeStay-ctaRow{flex-direction:column;}
}
/* <=========itienery============> */

.itin-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.itin-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itin-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 51, 0.15), rgba(15, 27, 51, 0.75));
}

.itin-hero-overlay {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 32px;
  color: #ffffff;
  z-index: 2;
}

.itin-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.itin-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.itin-hero-overlay h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 44px;
  margin-bottom: 18px;
}

.itin-hero-overlay h1 em {
  font-style: italic;
  color: var(--saffron);
}

.itin-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.itin-hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.itin-body {
  margin: 0 auto;
    padding: 80px 100px 100px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background: var(--cream);
    max-width: 100%;
    box-sizing: border-box;
}

.itin-main {
  flex: 1;
  min-width: 0;
}

.section-eyebrow {
  color: var(--vermilion);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.itin-overview h2,
.itin-timeline h2,
.itin-gallery h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--dusk-deep);
  margin-bottom: 18px;
}

.itin-overview h2 em,
.itin-timeline h2 em,
.itin-gallery h2 em {
  font-style: italic;
  color: var(--vermilion);
}

.itin-overview p {
  color: var(--dusk-mid);
  line-height: 1.75;
  font-size: 15px;
}

.itin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.itin-stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(15, 27, 51, 0.06);
}

.itin-stat-box i {
  font-size: 20px;
  color: var(--saffron);
  flex-shrink: 0;
}

.itin-stat-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dusk-deep);
}

.itin-stat-label {
  display: block;
  font-size: 11.5px;
  color: var(--dusk-mid);
  opacity: 0.75;
  margin-top: 2px;
}

.itin-timeline {
  margin-top: 70px;
}

.itin-day {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}

.itin-day:not(.itin-day-last)::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 78px;
  bottom: 0;
  width: 1px;
  background: rgba(27, 42, 74, 0.15);
}

.itin-day-marker {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 10px;
  background: rgba(240, 168, 60, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.itin-day-marker i {
  font-size: 16px;
  color: var(--saffron);
}

.itin-day-marker span {
  font-size: 12px;
  font-weight: 700;
  color: var(--vermilion);
}

.itin-day-content {
  flex: 1;
  min-width: 0;
}

.itin-day-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dusk-deep);
  margin-bottom: 8px;
}

.itin-day-content p {
  font-size: 14px;
  color: var(--dusk-mid);
  line-height: 1.7;
}

.itin-day-media {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.itin-day-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itin-gallery {
  margin-top: 70px;
}

.itin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.itin-gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.itin-gallery-grid img:hover {
  transform: scale(1.04);
}

.itin-inclusions {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(27, 42, 74, 0.1);
}

.itin-inc-col,
.itin-exc-col {
  flex: 1;
}

.itin-inc-col h3,
.itin-exc-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--dusk-deep);
  margin-bottom: 16px;
}

.itin-inc-col h3 i {
  color: var(--saffron);
}

.itin-exc-col h3 i {
  color: #c0392b;
}

.itin-inc-col ul,
.itin-exc-col ul {
  list-style: none;
  padding: 0;
}

.itin-inc-col li,
.itin-exc-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dusk-mid);
  margin-bottom: 12px;
  line-height: 1.5;
}

.itin-inc-col i {
  color: var(--saffron);
  margin-top: 2px;
}

.itin-exc-col i {
  color: #c0392b;
  margin-top: 2px;
}

.itin-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.itin-price-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 27, 51, 0.1);
}

.itin-price-media {
  height: 140px;
  overflow: hidden;
}

.itin-price-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itin-price-body {
  padding: 24px 24px 28px;
}

.itin-price-label {
  font-size: 12px;
  color: var(--dusk-mid);
  opacity: 0.75;
  margin-bottom: 6px;
}

.itin-price {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  color: var(--dusk-deep);
  margin-bottom: 18px;
}

.itin-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--dusk-mid);
}

.itin-price-divider {
  height: 1px;
  background: rgba(27, 42, 74, 0.1);
  margin-bottom: 18px;
}

.itin-quickfacts {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.itin-quickfacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--dusk-mid);
  margin-bottom: 12px;
}

.itin-quickfacts i {
  color: var(--saffron);
}

.itin-enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: var(--saffron);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 0;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background 0.2s ease;
}

.itin-enquire-btn:hover {
  background: var(--vermilion);
}

.itin-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: #ffffff;
  color: var(--saffron);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  border: 1.5px solid var(--saffron);
  text-decoration: none;
}

.itin-cta {
  background: var(--dusk-deep);
  text-align: center;
  padding: 80px 32px;
}

.itin-cta-icon {
  font-size: 28px;
  color: var(--saffron);
  margin-bottom: 16px;
  display: inline-block;
}

.itin-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 14px;
}

.itin-cta h2 em {
  font-style: italic;
  color: var(--saffron);
}

.itin-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 28px;
}

.itin-cta-btn {
  display: inline-block;
  background: var(--saffron);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.itin-cta-btn:hover {
  background: var(--vermilion);
}

@media (max-width: 1100px) {
  .itin-body {
    padding: 64px 32px 80px;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .itin-body {
    flex-direction: column;
    padding: 48px 20px 64px;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .itin-main,
  .itin-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .itin-sidebar {
    width: 100%;
    position: static;
  }

  .itin-hero-overlay {
    padding: 0 20px;
    bottom: 28px;
    left: 0;
    right: 0;
    margin: 0;
    max-width: none;
  }

  .itin-inclusions {
    flex-direction: column;
    gap: 28px;
  }

  .itin-hero-overlay h1 {
    font-size: 32px;
  }

  .itin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .itin-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .itin-day-media {
    display: none;
  }
}

@media (max-width: 560px) {
  .itin-hero {
    height: 300px;
  }

  .itin-body {
    padding: 28px 16px 48px;
    gap: 24px;
  }

  .itin-hero-overlay {
    padding: 0 16px;
    bottom: 20px;
  }

  .itin-hero-overlay h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .itin-hero-meta {
    gap: 10px 16px;
  }

  .itin-hero-meta span {
    font-size: 12px;
  }

  .itin-breadcrumb {
    font-size: 11px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .itin-overview h2,
  .itin-timeline h2,
  .itin-gallery h2 {
    font-size: 24px;
  }

  .itin-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .itin-stat-box {
    padding: 14px 16px;
  }

  .itin-timeline {
    margin-top: 40px;
  }

  .itin-day {
    gap: 12px;
    padding-bottom: 28px;
  }

  .itin-day-marker {
    width: 52px;
    height: 48px;
    border-radius: 8px;
  }

  .itin-day-marker i {
    font-size: 14px;
  }

  .itin-day-marker span {
    font-size: 10px;
  }

  .itin-day:not(.itin-day-last)::before {
    left: 25px;
    top: 52px;
  }

  .itin-day-content h3 {
    font-size: 16px;
  }

  .itin-day-content p {
    font-size: 13px;
  }

  .itin-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .itin-gallery-grid img {
    height: 110px;
  }

  .itin-cta {
    padding: 48px 16px;
  }

  .itin-price-card,
  .itin-enquire-btn,
  .itin-call-btn {
    width: 100%;
    box-sizing: border-box;
  }
}

/* <==========view-pacakage==========> */

.site-nav {
  background: var(--dusk-deep);
  padding: 18px 32px;
}

.nav-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.nav-logo i {
  color: var(--saffron);
  font-size: 16px;
}

.nav-logo em {
  font-style: italic;
  color: var(--saffron);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--saffron);
}

.nav-cta {
  background: var(--saffron);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--vermilion);
}

.pkg-hero {
  background: var(--dusk-deep);
  padding: 70px 32px 90px;
  text-align: center;
}

.pkg-hero-inner {
  max-width: 650px;
  margin: 0 auto;
}

.pkg-hero-eyebrow {
  color: var(--saffron);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pkg-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 18px;
}

.pkg-hero h1 em {
  font-style: italic;
  color: var(--saffron);
}

.pkg-hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

.pkg-filters {
  max-width: 1150px;
  margin: -30px auto 0;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 32px;
}

.pkg-filter {
  background: #ffffff;
  color: var(--dusk-mid);
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(15, 27, 51, 0.1);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pkg-filter.active,
.pkg-filter:hover {
  background: var(--saffron);
  color: #ffffff;
}

.pkg-list {
  max-width: 1150px;
  margin: 0 auto;
  padding: 90px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.pkg-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 27, 51, 0.08);
}

.pkg-reverse {
  grid-template-columns: 1fr 1fr;
}

.pkg-reverse .pkg-media {
  order: 2;
}

.pkg-reverse .pkg-content {
  order: 1;
}

.pkg-media {
  position: relative;
  min-height: 340px;
}

.pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 27, 51, 0.85);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
}

.pkg-badge i {
  color: var(--saffron);
}

.pkg-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pkg-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 25px;
  color: var(--dusk-deep);
  margin-bottom: 14px;
}

.pkg-desc {
  font-size: 14.5px;
  color: var(--dusk-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pkg-route {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 26px;
  position: relative;
}

.pkg-route-dot {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.pkg-route-dot::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--saffron);
  border: 2px solid rgba(240, 168, 60, 0.35);
  position: relative;
  z-index: 2;
}

.pkg-route-dot::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  width: 100%;
  height: 1px;
  border-top: 1px dashed rgba(27, 42, 74, 0.3);
  z-index: 1;
}

.pkg-route-dot:last-child::after {
  display: none;
}

.pkg-route-dot i {
  position: absolute;
  top: 18px;
  font-style: normal;
  font-size: 11.5px;
  color: var(--dusk-mid);
  white-space: nowrap;
}

.pkg-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
}

.pkg-info-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--dusk-mid);
}

.pkg-info-row i {
  color: var(--saffron);
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(27, 42, 74, 0.1);
}

.pkg-price-label {
  display: block;
  font-size: 11.5px;
  color: var(--dusk-mid);
  opacity: 0.75;
  margin-bottom: 4px;
}

.pkg-price-value {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--dusk-deep);
}

.pkg-price-value small {
  font-size: 12px;
  font-weight: 400;
  color: var(--dusk-mid);
}

.pkg-actions {
  display: flex;
  gap: 10px;
}

.pkg-btn-outline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  border: 1.5px solid var(--saffron);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.pkg-btn-solid {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: var(--saffron);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.pkg-btn-solid:hover {
  background: var(--vermilion);
}

.pkg-trust {
 max-width: 100%;
    margin: 40px auto 0;
    padding: 50px 100px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--cream);
    border-top: 1px solid rgba(27, 42, 74, 0.1);
}

.pkg-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pkg-trust-item i {
  font-size: 24px;
  color: var(--saffron);
  flex-shrink: 0;
}

.pkg-trust-item h4 {
  font-size: 14.5px;
  color: var(--dusk-deep);
  margin-bottom: 4px;
}

.pkg-trust-item p {
  font-size: 12.5px;
  color: var(--dusk-mid);
  opacity: 0.8;
}

.pkg-cta {
  background: var(--dusk-deep);
  text-align: center;
  padding: 80px 32px;
  margin-top: 60px;
}

.pkg-cta-icon {
  font-size: 28px;
  color: var(--saffron);
  margin-bottom: 16px;
  display: inline-block;
}

.pkg-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 12px;
}

.pkg-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  margin-bottom: 26px;
}

.pkg-cta-btn {
  display: inline-block;
  background: var(--saffron);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pkg-cta-btn:hover {
  background: var(--vermilion);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .pkg-card,
  .pkg-reverse {
    grid-template-columns: 1fr;
  }

  .pkg-reverse .pkg-media,
  .pkg-reverse .pkg-content {
    order: unset;
  }

  .pkg-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* <============yamnotri============> */

.dham-hero {
 max-width: 100%;
    margin: 0 auto;
    padding: 90px 100px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--parchment);
}

.dham-hero-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 27, 51, 0.1);
}

.dham-hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.dham-hero-content {
  position: relative;
}

.dham-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--saffron);
  color: var(--dusk-deep);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 26px;
}

.dham-eyebrow {
  color: var(--vermilion);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dham-hero-content h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 46px;
  color: var(--dusk-deep);
  margin-bottom: 22px;
}

.dham-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.dham-badges span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(240, 168, 60, 0.12);
  color: var(--dusk-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
}

.dham-badges i {
  color: var(--saffron);
}

.dham-intro {
  font-size: 15.5px;
  color: var(--dusk-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.dham-hero-actions {
  display: flex;
  gap: 14px;
}

.dham-btn-solid {
  background: var(--saffron);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dham-btn-solid:hover {
  background: var(--vermilion);
}

.dham-btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--saffron);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1.5px solid var(--saffron);
  text-decoration: none;
}

.dham-facts {
  max-width: 100%;
    margin: 0 auto;
    padding: 0 32px 100px 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    background: var(--parchment);
}

.dham-fact-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.dham-fact-box i {
  font-size: 22px;
  color: var(--saffron);
}

.dham-fact-value {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dusk-deep);
}

.dham-fact-label {
  display: block;
  font-size: 12px;
  color: var(--dusk-mid);
  opacity: 0.75;
  margin-top: 2px;
}

.dham-story {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 100px 100px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: var(--parchment);
}

.dham-story-media {
  border-radius: 16px;
  overflow: hidden;
}

.dham-story-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.dham-story-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--dusk-deep);
  margin-bottom: 20px;
}

.dham-story-content h2 em {
  font-style: italic;
  color: var(--vermilion);
}

.dham-story-content p {
  font-size: 14.5px;
  color: var(--dusk-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.dham-story-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dham-story-highlights div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dusk-deep);
}

.dham-story-highlights i {
  color: var(--saffron);
  font-size: 18px;
}

.dham-route {
  background: var(--cream);
  padding: 100px 32px;
}

.dham-center {
  text-align: center;
}

.dham-route h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--dusk-deep);
  margin-bottom: 60px;
}

.dham-route h2 em {
  font-style: italic;
  color: var(--vermilion);
}

.dham-route-steps {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.dham-step {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 27, 51, 0.06);
}

.dham-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(240, 168, 60, 0.12);
  color: var(--saffron);
  font-size: 22px;
  margin: 0 auto 18px;
}

.dham-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 16.5px;
  color: var(--dusk-deep);
  margin-bottom: 10px;
}

.dham-step p {
  font-size: 13px;
  color: var(--dusk-mid);
  line-height: 1.6;
}

.dham-nearby {
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 100px 32px;
  background: var(--parchment);
}

.dham-nearby h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--dusk-deep);
  margin-bottom: 40px;
}

.dham-nearby h2 em {
  font-style: italic;
  color: var(--vermilion);
}

.dham-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dham-nearby-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.3s ease;
}

.dham-nearby-card:hover {
  transform: translateY(-6px);
}

.dham-nearby-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dham-nearby-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--dusk-deep);
  padding: 18px 20px 6px;
}

.dham-nearby-card p {
  font-size: 13px;
  color: var(--dusk-mid);
  padding: 0 20px 20px;
  line-height: 1.6;
}

.dham-cta {
  background: var(--parchment);
  text-align: center;
  padding: 90px 32px;
}

.dham-cta-icon {
  font-size: 28px;
  color: var(--saffron);
  margin-bottom: 16px;
  display: inline-block;
}

.dham-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--dusk-deep);
  margin-bottom: 12px;
}

.dham-cta h2 em {
  font-style: italic;
  color: var(--vermilion);
}

.dham-cta p {
  font-size: 14.5px;
  color: var(--dusk-mid);
  margin-bottom: 26px;
}

.dham-cta-btn {
  display: inline-block;
  background: var(--saffron);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dham-cta-btn:hover {
  background: var(--vermilion);
}

@media (max-width: 900px) {
  .dham-hero,
  .dham-story {
    grid-template-columns: 1fr;
  }

  .dham-facts,
  .dham-route-steps,
  .dham-nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* <==========choose itenary============> */

.route-selector {
  position: relative;
  padding: 80px 20px;
  background-image: linear-gradient(rgba(107, 31, 14, 0.55), rgba(107, 31, 14, 0.55)), url('travel/kedarnath1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.route-selector .section-tag {
  background: rgba(255, 255, 255, 0.9);
}
.route-selector .section-heading {
  color: #ffffff;
}
.route-selector .section-sub {
  color: #fbe4c8;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: #fbe4c8;
  color: #a0421c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-heading {
  font-size: 38px;
  color: #6b1f0e;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.section-sub {
  color: #8a6a5a;
  font-size: 16px;
  margin-bottom: 40px;
}

.city-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.city-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 48px;
  background: #ffffff;
  border: 2px solid #f0ddc8;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-tab:hover {
  border-color: #c96a2e;
  transform: translateY(-3px);
}

.city-tab.active {
  background: linear-gradient(135deg, #a0421c, #c96a2e);
  border-color: #a0421c;
  box-shadow: 0 10px 25px rgba(160, 66, 28, 0.25);
}

.city-icon {
  font-size: 24px;
}

.city-name {
  font-size: 20px;
  font-weight: 700;
  color: #6b1f0e;
}

.city-tab.active .city-name {
  color: #ffffff;
}

.city-desc {
  font-size: 13px;
  color: #a08876;
}

.city-tab.active .city-desc {
  color: #fbe4c8;
}

.travel-mode {
  padding: 60px 20px;
  background: #ffffff;
}

.mode-heading {
  text-align: center;
  font-size: 26px;
  color: #6b1f0e;
  margin-bottom: 32px;
  font-family: Georgia, serif;
}

.mode-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.mode-card {
  position: relative;
  padding: 32px 24px;
  background: #fff8f0;
  border: 2px solid #f0ddc8;
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.mode-card:hover {
  border-color: #c96a2e;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(160, 66, 28, 0.12);
}

.mode-card.active {
  background: #fff;
  border-color: #a0421c;
  box-shadow: 0 12px 30px rgba(160, 66, 28, 0.2);
}

.mode-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.mode-card h4 {
  font-size: 19px;
  color: #6b1f0e;
  margin-bottom: 8px;
}

.mode-card p {
  font-size: 14px;
  color: #8a6a5a;
  line-height: 1.5;
}

.mode-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: #a0421c;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
}

.itinerary-preview {
  padding: 70px 20px;
  background: linear-gradient(180deg, #fdf1e3 0%, #fff8f0 100%);
}

.preview-header h3 {
  font-size: 24px;
  color: #6b1f0e;
  margin-bottom: 8px;
}

.preview-header p {
  color: #8a6a5a;
  margin-bottom: 40px;
}

.preview-timeline {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
  border-left: 3px dashed #d9a875;
  padding-left: 32px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #a0421c;
  border-radius: 50%;
  border: 3px solid #fff8f0;
}

.day-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #a0421c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.timeline-content p {
  color: #4a3528;
  font-size: 15px;
}

.cta-btn {
  width: 25%;
  display: block;
  margin: 0 auto;
  padding: 15px 48px;
  background: linear-gradient(135deg, #a0421c, #c96a2e);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
   text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(160, 66, 28, 0.3);
}

@media (max-width: 700px) {
  .mode-cards {
    grid-template-columns: 1fr;
  }
  .city-tabs {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .route-selector {
    background-attachment: scroll;
  }
}
.holiday-pkg-section {
  width: 100%;
  padding: 80px 0;
  background: #F7EFE3;
  overflow: hidden;
}

.holiday-pkg-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 0 20px;
}

.holiday-pkg-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #E8734A;
  margin-bottom: 12px;
}

.holiday-pkg-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1B2A4A;
  line-height: 1.2;
  margin: 0;
}

.holiday-pkg-title span {
  color: #E8734A;
  font-style: italic;
}

.holiday-pkg-wrapper {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.holiday-pkg-track-outer {
  overflow: hidden;
  width: 100%;
}

.holiday-pkg-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.holiday-pkg-card {
  flex: 0 0 calc(25% - 18px);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.08);
  display: flex;
  flex-direction: column;
}

.holiday-pkg-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.holiday-pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.holiday-pkg-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.holiday-pkg-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.holiday-pkg-top h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0;
  line-height: 1.3;
}

.holiday-pkg-badge {
  flex-shrink: 0;
  background: #FBEAE0;
  color: #E8734A;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.holiday-pkg-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6B7280;
  font-size: 14px;
}

.holiday-pkg-meta svg {
  color: #9CA3AF;
  flex-shrink: 0;
}

.holiday-pkg-route {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #4B5563;
  font-size: 13.5px;
  line-height: 1.4;
  padding-bottom: 12px;
  border-bottom: 1px solid #EDE6D8;
}

.holiday-pkg-route svg {
  color: #9CA3AF;
  flex-shrink: 0;
  margin-top: 2px;
}

.holiday-pkg-btns {
  display: flex;
  gap: 10px;
}

.holiday-pkg-btn-outline,
.holiday-pkg-btn-solid {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.holiday-pkg-btn-outline {
  border: 1.5px solid #E8734A;
  color: #E8734A;
  background: transparent;
}

.holiday-pkg-btn-outline:hover {
  background: #FBEAE0;
}

.holiday-pkg-btn-solid {
  background: #E8734A;
  color: #ffffff;
  border: 1.5px solid #E8734A;
}

.holiday-pkg-btn-solid:hover {
  background: #d9612f;
}

.holiday-pkg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(27, 42, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2A4A;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease;
}

.holiday-pkg-arrow:hover {
  background: #FBEAE0;
  color: #E8734A;
}

.holiday-pkg-prev {
  left: 0;
}

.holiday-pkg-next {
  right: 0;
}

.holiday-pkg-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.holiday-pkg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9CFBB;
  cursor: pointer;
  transition: all 0.2s ease;
}

.holiday-pkg-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #E8734A;
}

@media (max-width: 1024px) {
  .holiday-pkg-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .holiday-pkg-wrapper {
    padding: 0 16px;
  }
  .holiday-pkg-card {
    flex: 0 0 100%;
  }
  .holiday-pkg-arrow {
    width: 36px;
    height: 36px;
  }
}
.holiday-pkg-viewmore {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.holiday-pkg-viewmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  background: #1B2A4A;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.holiday-pkg-viewmore-btn:hover {
  background: #E8734A;
  gap: 12px;
}

.holiday-pkg-viewmore-btn svg {
  transition: transform 0.25s ease;
}

.holiday-pkg-viewmore-btn:hover svg {
  transform: translateX(2px);
}

/* <===========itinerary-view===========> */

.tripDetail-hero{
  position:relative;
  height:420px;
  overflow:hidden;
}
.tripDetail-heroMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.tripDetail-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(15,27,51,0.15),rgba(15,27,51,0.75));
}
.tripDetail-heroOverlay{
  position:absolute;
  bottom:50px;
  left:0;
  right:0;
  max-width:1150px;
  margin:0 auto;
  padding:0 32px;
  color:#ffffff;
  z-index:2;
}
.tripDetail-breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  opacity:.85;
  margin-bottom:16px;
}
.tripDetail-breadcrumb a{
  color:#ffffff;
  text-decoration:none;
}
.tripDetail-heroOverlay h1{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:44px;
  margin-bottom:18px;
}
.tripDetail-heroOverlay h1 em{
  font-style:italic;
  color:var(--saffron);
}
.tripDetail-heroMeta{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}
.tripDetail-heroMeta span{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  opacity:.9;
}

.tripDetail-body{
  margin:0 auto;
  padding:80px 100px 100px;
  display:flex;
  gap:50px;
  align-items:flex-start;
  background:var(--cream);
}
.tripDetail-main{
  flex:1;
  min-width:0;
}
.tripDetail-eyebrow{
  color:var(--vermilion);
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.tripDetail-overview h2,
.tripDetail-timeline h2,
.tripDetail-gallery h2{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:30px;
  color:var(--dusk-deep);
  margin-bottom:18px;
}
.tripDetail-overview h2 em,
.tripDetail-timeline h2 em,
.tripDetail-gallery h2 em{
  font-style:italic;
  color:var(--vermilion);
}
.tripDetail-overview p{
  color:var(--dusk-mid);
  line-height:1.75;
  font-size:15px;
}

.tripDetail-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:32px;
}
.tripDetail-statBox{
  display:flex;
  align-items:center;
  gap:12px;
  background:#ffffff;
  border-radius:12px;
  padding:16px;
  box-shadow:0 8px 20px rgba(15,27,51,0.06);
}
.tripDetail-statBox i{
  font-size:20px;
  color:var(--saffron);
  flex-shrink:0;
}
.tripDetail-statValue{
  display:block;
  font-size:14px;
  font-weight:700;
  color:var(--dusk-deep);
}
.tripDetail-statLabel{
  display:block;
  font-size:11.5px;
  color:var(--dusk-mid);
  opacity:.75;
  margin-top:2px;
}

.tripDetail-timeline{
  margin-top:70px;
}
.tripDetail-day{
  display:flex;
  align-items:flex-start;
  gap:24px;
  position:relative;
  padding-bottom:36px;
}
.tripDetail-day:not(.tripDetail-dayLast)::before{
  content:'';
  position:absolute;
  left:39px;
  top:78px;
  bottom:0;
  width:1px;
  background:rgba(27,42,74,0.15);
}
.tripDetail-dayMarker{
  flex-shrink:0;
  width:80px;
  height:60px;
  border-radius:10px;
  background:rgba(240,168,60,0.12);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.tripDetail-dayMarker i{
  font-size:16px;
  color:var(--saffron);
}
.tripDetail-dayMarker span{
  font-size:12px;
  font-weight:700;
  color:var(--vermilion);
}
.tripDetail-dayContent{
  flex:1;
  min-width:0;
}
.tripDetail-dayContent h3{
  font-family:'Fraunces',serif;
  font-size:18px;
  font-weight:600;
  color:var(--dusk-deep);
  margin-bottom:8px;
}
.tripDetail-dayContent p{
  font-size:14px;
  color:var(--dusk-mid);
  line-height:1.7;
}

.tripDetail-gallery{
  margin-top:70px;
}
.tripDetail-galleryGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.tripDetail-galleryGrid img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:12px;
  transition:transform .4s ease;
}
.tripDetail-galleryGrid img:hover{
  transform:scale(1.04);
}

.tripDetail-inclusions{
  display:flex;
  gap:40px;
  margin-top:60px;
  padding-top:50px;
  border-top:1px solid rgba(27,42,74,0.1);
}
.tripDetail-incCol,
.tripDetail-excCol{
  flex:1;
}
.tripDetail-incCol h3,
.tripDetail-excCol h3{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Fraunces',serif;
  font-size:18px;
  color:var(--dusk-deep);
  margin-bottom:16px;
}
.tripDetail-incCol h3 i{
  color:var(--saffron);
}
.tripDetail-excCol h3 i{
  color:#c0392b;
}
.tripDetail-incCol ul,
.tripDetail-excCol ul{
  list-style:none;
  padding:0;
}
.tripDetail-incCol li,
.tripDetail-excCol li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:var(--dusk-mid);
  margin-bottom:12px;
  line-height:1.5;
}
.tripDetail-incCol i{
  color:var(--saffron);
  margin-top:2px;
}
.tripDetail-excCol i{
  color:#c0392b;
  margin-top:2px;
}

.tripDetail-sidebar{
  width:300px;
  flex-shrink:0;
  position:sticky;
  top:100px;
}
.tripDetail-priceCard{
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(15,27,51,0.1);
}
.tripDetail-priceMedia{
  height:140px;
  overflow:hidden;
}
.tripDetail-priceMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.tripDetail-priceBody{
  padding:24px 24px 28px;
}
.tripDetail-priceDivider{
  height:1px;
  background:rgba(27,42,74,0.1);
  margin-bottom:18px;
}
.tripDetail-quickfacts{
  list-style:none;
  padding:0;
  margin-bottom:24px;
}
.tripDetail-quickfacts li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13.5px;
  color:var(--dusk-mid);
  margin-bottom:12px;
}
.tripDetail-quickfacts i{
  color:var(--saffron);
}
.tripDetail-enquireBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
  background:var(--saffron);
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  padding:13px 0;
  border-radius:6px;
  text-decoration:none;
  margin-bottom:12px;
  transition:background .2s ease;
}
.tripDetail-enquireBtn:hover{
  background:var(--vermilion);
}
.tripDetail-callBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
  background:#ffffff;
  color:var(--saffron);
  font-size:14px;
  font-weight:600;
  padding:12px 0;
  border-radius:6px;
  border:1.5px solid var(--saffron);
  text-decoration:none;
}

.tripDetail-cta{
  background:var(--dusk-deep);
  text-align:center;
  padding:80px 32px;
}
.tripDetail-ctaIcon{
  font-size:28px;
  color:var(--saffron);
  margin-bottom:16px;
  display:inline-block;
}
.tripDetail-cta h2{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:32px;
  color:#ffffff;
  margin-bottom:14px;
}
.tripDetail-cta h2 em{
  font-style:italic;
  color:var(--saffron);
}
.tripDetail-cta p{
  color:rgba(255,255,255,0.75);
  font-size:15px;
  margin-bottom:28px;
}
.tripDetail-ctaBtn{
  display:inline-block;
  background:var(--saffron);
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  padding:14px 34px;
  border-radius:6px;
  text-decoration:none;
  transition:background .2s ease;
}
.tripDetail-ctaBtn:hover{
  background:var(--vermilion);
}

@media(max-width:900px){
  .tripDetail-body{
    flex-direction:column;
  }
  .tripDetail-sidebar{
    width:100%;
    position:static;
  }
  .tripDetail-heroOverlay h1{
    font-size:32px;
  }
  .tripDetail-stats{
    grid-template-columns:repeat(2,1fr);
  }
  .tripDetail-galleryGrid{
    grid-template-columns:repeat(2,1fr);
  }
}
/* <===========holiday-itinerary===========> */

.msr-itinerary,
.msr-itinerary *{
  box-sizing:border-box;
}

.msr-itinerary{
  margin:0;
  background:#F5F1E8;
  color:#16233D;
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
}

.msr-hero__title,
.msr-trail__title,
.msr-day__title,
.msr-terms__title{
  font-family:'Playfair Display',serif;
  margin:0;
}

.msr-hero__scroll,
.msr-cta,
.msr-sidebar__call{
  text-decoration:none;
  color:inherit;
}

.msr-eyebrow{
  display:inline-block;
  font-size:0.78rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#D98E5F;
  font-weight:600;
  margin-bottom:10px;
}

.msr-hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}

.msr-hero__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.06);
  animation:msrHeroZoom 16s ease-out forwards;
}

@keyframes msrHeroZoom{
  from{transform:scale(1.06);}
  to{transform:scale(1);}
}

.msr-hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(22,35,61,0.15) 0%, rgba(22,35,61,0.55) 65%, rgba(22,35,61,0.92) 100%);
}

.msr-hero__inner{
  position:relative;
  z-index:2;
  padding:0 8vw 90px;
  color:#F5F1E8;
  max-width:760px;
}

.msr-hero__eyebrow{
  display:inline-block;
  font-size:0.85rem;
  letter-spacing:0.08em;
  color:#F0C7A6;
  margin-bottom:18px;
  opacity:0;
  animation:msrFadeUp 0.9s ease 0.2s forwards;
}

.msr-hero__title{
  font-size:clamp(2.8rem,6vw,5.2rem);
  line-height:1.03;
  font-weight:800;
  opacity:0;
  animation:msrFadeUp 0.9s ease 0.4s forwards;
}

.msr-hero__sub{
  font-size:1.05rem;
  line-height:1.6;
  color:#D9D3C4;
  max-width:520px;
  margin:22px 0 0;
  opacity:0;
  animation:msrFadeUp 0.9s ease 0.6s forwards;
}

.msr-hero__meta{
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:34px;
  opacity:0;
  animation:msrFadeUp 0.9s ease 0.8s forwards;
}

.msr-pill{
  background:#F0C7A6;
  color:#7A3E17;
  font-weight:600;
  font-size:0.85rem;
  padding:8px 18px;
  border-radius:999px;
}

.msr-hero__price{
  font-size:0.95rem;
  color:#D9D3C4;
}

.msr-hero__price strong{
  color:#F5F1E8;
  font-size:1.15rem;
}

@keyframes msrFadeUp{
  from{opacity:0;transform:translateY(24px);}
  to{opacity:1;transform:translateY(0);}
}

.msr-hero__scroll{
  position:absolute;
  z-index:2;
  right:8vw;
  bottom:36px;
  width:26px;
  height:80px;
  border:2px solid white;
  border-radius:20px;
}

.msr-hero__scroll span{
  position:absolute;
  top:8px;
  left:50%;
  width:4px;
  height:4px;
  border-radius:50%;
  background:#F0C7A6;
  transform:translateX(-50%);
  animation:msrScrollDot 1.6s ease-in-out infinite;
}

@keyframes msrScrollDot{
  0%{transform:translate(-50%,0);opacity:1;}
  70%{transform:translate(-50%,16px);opacity:0;}
  100%{transform:translate(-50%,16px);opacity:0;}
}

.msr-stats{
  position:relative;
  z-index:3;
  margin:-64px 8vw 0;
}

.msr-stats__row{
  background:#FFFFFF;
  border-radius:20px;
  box-shadow:0 24px 50px -20px rgba(22,35,61,0.25);
  padding:28px 34px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.msr-stat{
  display:flex;
  align-items:center;
  gap:14px;
}

.msr-stat svg{
  width:30px;
  height:30px;
  color:#D98E5F;
  flex-shrink:0;
}

.msr-stat b{
  display:block;
  font-size:0.95rem;
  color:#16233D;
}

.msr-stat span{
  display:block;
  font-size:0.8rem;
  color:#6B7280;
  margin-top:2px;
}

.msr-layout{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:60px;
  max-width:1240px;
  margin:0 auto;
  padding:100px 8vw 120px;
  align-items:start;
}

.msr-trail__head{
  margin-bottom:70px;
}

.msr-trail__title{
  font-size:clamp(1.9rem,3vw,2.6rem);
  font-weight:700;
}

.msr-trail{
  position:relative;
}

.msr-trail__track{
  position:absolute;
  left:-30px;
  top:60px;
  bottom:60px;
  width:200px;
  pointer-events:none;
}

.msr-trail__svg{
  width:100%;
  height:100%;
}

.msr-cablecar{
  position:absolute;
  top:0;
  left:0;
  width:40px;
  height:30px;
  offset-path:path('M170,40 C90,120 90,220 30,300 C-10,360 -10,440 30,500 C90,580 90,680 170,760 C210,810 210,850 170,880');
  offset-distance:0%;
  offset-rotate:0deg;
  transform:translate(-20px,-15px);
}

.msr-day{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:36px;
  align-items:center;
  margin-bottom:100px;
  opacity:0;
  transform:translateY(40px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.msr-day.msr-is-visible{
  opacity:1;
  transform:translateY(0);
}

.msr-day--right{
  grid-template-columns:1.2fr 1fr;
}

.msr-day--right .msr-day__media{
  order:2;
}

.msr-day__media{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 24px 50px -20px rgba(22,35,61,0.25);
}

.msr-day__media img{
  display:block;
  max-width:100%;
  height:260px;
  width:100%;
  object-fit:cover;
  transition:transform 0.7s ease;
}

.msr-day__media:hover img{
  transform:scale(1.07);
}

.msr-day__num{
  position:absolute;
  top:16px;
  left:16px;
  background:rgba(22,35,61,0.85);
  color:#F5F1E8;
  font-size:0.78rem;
  letter-spacing:0.08em;
  padding:6px 14px;
  border-radius:999px;
  backdrop-filter:blur(4px);
}

.msr-day__tag{
  display:inline-block;
  font-size:0.75rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#D98E5F;
  font-weight:700;
  margin-bottom:10px;
}

.msr-day__title{
  font-size:1.5rem;
  font-weight:600;
  line-height:1.3;
  margin-bottom:18px;
}

.msr-timeline{
  list-style:none;
  margin:0;
  padding:0;
  border-left:2px solid #E4DCCB;
}

.msr-timeline li{
  position:relative;
  padding:0 0 16px 22px;
  font-size:0.92rem;
  line-height:1.55;
  color:#2B3B58;
}

.msr-timeline li::before{
  content:'';
  position:absolute;
  left:-6px;
  top:5px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#D98E5F;
  border:2px solid #F5F1E8;
}

.msr-timeline li:last-child{
  padding-bottom:0;
}

.msr-timeline li span{
  display:block;
  font-weight:600;
  color:#16233D;
  font-size:0.82rem;
  margin-bottom:3px;
}

.msr-terms{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:40px;
  padding-top:60px;
  border-top:1px solid #E4DCCB;
}

.msr-terms__title{
  font-size:1.3rem;
  margin-bottom:20px;
}

.msr-check,.msr-cross{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.msr-check li,.msr-cross li{
  position:relative;
  padding-left:30px;
  font-size:0.93rem;
  color:#2B3B58;
  line-height:1.5;
}

.msr-check li::before{
  content:'';
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border-radius:6px;
  background:#DDEFE3;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F7A4C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:11px;
}

.msr-cross li::before{
  content:'';
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border-radius:6px;
  background:#F5DEDC;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B54A3F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:11px;
}

.msr-sidebar{
  position:sticky;
  top:40px;
}

.msr-sidebar__card{
  background:#16233D;
  color:#F5F1E8;
  border-radius:22px;
  padding:34px 30px;
  box-shadow:0 24px 50px -20px rgba(22,35,61,0.25);
}

.msr-sidebar__label{
  font-size:0.78rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#F0C7A6;
}

.msr-sidebar__price{
  font-family:'Playfair Display',serif;
  font-size:2.4rem;
  font-weight:700;
  margin-top:8px;
}

.msr-sidebar__price span{
  font-size:1.4rem;
  vertical-align:top;
  margin-right:2px;
}

.msr-sidebar__price small{
  font-family:'Inter',sans-serif;
  font-size:0.85rem;
  font-weight:400;
  color:#B7BECB;
  margin-left:4px;
}

.msr-sidebar__note{
  display:block;
  font-size:0.82rem;
  color:#9AA2B3;
  margin-top:6px;
}

.msr-sidebar__divider{
  height:1px;
  background:rgba(245,241,232,0.14);
  margin:22px 0;
}

.msr-sidebar__facts{
  list-style:none;
  margin:0 0 26px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.msr-sidebar__facts li{
  display:flex;
  justify-content:space-between;
  font-size:0.86rem;
  color:#C7CCD8;
}

.msr-sidebar__facts b{
  color:#F5F1E8;
  font-weight:600;
}

.msr-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#D98E5F;
  color:#16233D;
  font-weight:700;
  padding:15px 20px;
  border-radius:12px;
  text-align:center;
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.msr-cta:hover{
  background:#F0C7A6;
  transform:translateY(-2px);
  box-shadow:0 12px 24px -10px rgba(217,142,95,0.6);
}

.msr-sidebar__call{
  display:block;
  text-align:center;
  font-size:0.85rem;
  color:#9AA2B3;
  margin-top:16px;
}

.msr-sidebar__call:hover{
  color:#F0C7A6;
}

@media (max-width:980px){
  .msr-layout{
    grid-template-columns:1fr;
    padding:80px 6vw 100px;
    gap:70px;
  }
  .msr-stats{margin:-40px 6vw 0;}
  .msr-stats__row{grid-template-columns:1fr 1fr;}
  .msr-trail__track{display:none;}
  .msr-day,.msr-day--right{
    grid-template-columns:1fr;
  }
  .msr-day--right .msr-day__media{order:0;}
  .msr-sidebar{
    position:static;
  }
  .msr-terms{grid-template-columns:1fr;}
}

@media (max-width:560px){
  .msr-hero{min-height:78vh;}
  .msr-hero__inner{padding:0 6vw 60px;}
  .msr-stats__row{grid-template-columns:1fr;padding:22px;}
}

@media (prefers-reduced-motion:reduce){
  .msr-hero__bg,.msr-hero__eyebrow,.msr-hero__title,.msr-hero__sub,.msr-hero__meta,.msr-hero__scroll span{
    animation:none !important;
    opacity:1 !important;
    transform:none !important;
  }
  .msr-day{
    transition:none;
    opacity:1;
    transform:none;
  }
}
/* <=========heli-vip==========> */

.skyroute-hero {
  position: relative;
  background: #f7f2e8;
  padding: 90px 24px 70px;
  text-align: center;
  overflow: hidden;
}

.skyroute-chopper-float {
  position: absolute;
  top: 40px;
  left: -60px;
  font-size: 34px;
  color: #d9784f;
  opacity: 0.35;
  animation: skyrouteFly 9s linear infinite;
}

@keyframes skyrouteFly {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(60vw, 30px) rotate(4deg); }
  100% { transform: translate(120vw, 0) rotate(0deg); }
}

.skyroute-eyebrow {
  display: inline-block;
  color: #d9784f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.skyroute-title {
  font-size: 46px;
  color: #16233f;
  font-weight: 800;
  margin-bottom: 18px;
}

.skyroute-title span {
  font-style: italic;
  color: #c9922f;
  font-weight: 700;
}

.skyroute-sub {
  max-width: 620px;
  margin: 0 auto;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.7;
}

.skyroute-heli-section {
  background: #ffffff;
  padding: 80px 24px;
}

.skyroute-section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.skyroute-section-head h2 {
  font-size: 34px;
  color: #16233f;
  font-weight: 800;
  margin-bottom: 12px;
}

.skyroute-section-head h2 span {
  font-style: italic;
  color: #c9922f;
}

.skyroute-section-head p {
  color: #6b6b6b;
  font-size: 15px;
}

.skyroute-heli-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}
.skyroute-heli-card.skyroute-heli-featured {
  grid-column: 1 / -1;
}

.skyroute-heli-card.skyroute-heli-featured .skyroute-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.skyroute-heli-card {
  position: relative;
  background: #f7f2e8;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(217, 120, 79, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.skyroute-heli-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(22, 35, 63, 0.12);
}

.skyroute-heli-tag {
  position: absolute;
  top: -14px;
  left: 30px;
  background: #d9784f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  animation: skyrouteBounceTag 2.2s ease-in-out infinite;
}

@keyframes skyrouteBounceTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.skyroute-heli-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(217, 120, 79, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  animation: skyrouteBob 3s ease-in-out infinite;
}

@keyframes skyrouteBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.skyroute-heli-icon i {
  font-size: 26px;
  color: #d9784f;
}

.skyroute-heli-card h3 {
  font-size: 22px;
  color: #16233f;
  font-weight: 700;
  margin-bottom: 6px;
}

.skyroute-route {
  color: #6b6b6b;
  font-size: 14px;
  margin-bottom: 14px;
}

.skyroute-duration {
  display: inline-block;
  background: #16233f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.skyroute-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.skyroute-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.skyroute-features i {
  color: #d9784f;
  font-size: 15px;
}

.skyroute-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.skyroute-price span {
  color: #6b6b6b;
  font-size: 13px;
}

.skyroute-price strong {
  color: #16233f;
  font-size: 26px;
  font-weight: 800;
}

.skyroute-price small {
  font-size: 13px;
  font-weight: 500;
  color: #6b6b6b;
}

.skyroute-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, #d9784f, #c9622f);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  animation: skyroutePulse 2.6s ease-in-out infinite;
}
.skyroute-btn a{
  text-decoration: none;
  color:white;
}

.skyroute-btn:hover {
  animation: none;
  transform: scale(1.03);
}

@keyframes skyroutePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 120, 79, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(217, 120, 79, 0); }
}

.skyroute-note {
  text-align: center;
  margin: 40px auto 0;
  font-size: 13px;
  color: #8a8a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.skyroute-note i {
  color: #d9784f;
}

.vippass-section {
  position: relative;
  background: #16233f;
  padding: 90px 24px;
  overflow: hidden;
}

.vippass-glow-one, .vippass-glow-two {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.vippass-glow-one {
  background: #c9922f;
  top: -100px;
  left: -100px;
  animation: vippassDrift 10s ease-in-out infinite;
}

.vippass-glow-two {
  background: #d9784f;
  bottom: -100px;
  right: -100px;
  animation: vippassDrift 12s ease-in-out infinite reverse;
}

@keyframes vippassDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

.vippass-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.vippass-left .skyroute-eyebrow {
  color: #c9922f;
}

.vippass-title {
  font-size: 36px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.vippass-title span {
  font-style: italic;
  color: #c9922f;
}

.vippass-left > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 34px;
  line-height: 1.7;
}

.vippass-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vippass-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vippass-benefit i {
  font-size: 20px;
  color: #c9922f;
  margin-top: 3px;
}

.vippass-benefit h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.vippass-benefit p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.vippass-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 34px;
  text-align: center;
  animation: vippassFloat 4s ease-in-out infinite;
}

@keyframes vippassFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.vippass-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #c9922f, #d9784f);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.vippass-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(201, 146, 47, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.vippass-icon i {
  font-size: 28px;
  color: #c9922f;
}

.vippass-card h3 {
  font-size: 24px;
  color: #16233f;
  font-weight: 800;
  margin-bottom: 6px;
}

.vippass-card > p {
  color: #6b6b6b;
  font-size: 13px;
  margin-bottom: 20px;
}

.vippass-price {
  font-size: 36px;
  font-weight: 800;
  color: #16233f;
  margin-bottom: 22px;
}

.vippass-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #16233f;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 14px;
  animation: skyroutePulseNavy 2.6s ease-in-out infinite;
}

@keyframes skyroutePulseNavy {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 35, 63, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(22, 35, 63, 0); }
}

.vippass-btn:hover {
  animation: none;
  transform: scale(1.03);
}

.vippass-small {
  color: #9a9a9a;
  font-size: 12px;
}

@media (max-width: 900px) {
  .skyroute-heli-grid {
    grid-template-columns: 1fr;
  }
  .vippass-inner {
    grid-template-columns: 1fr;
  }
  .vippass-benefits {
    grid-template-columns: 1fr;
  }
  .skyroute-title {
    font-size: 34px;
  }
}

/* Homepage — Heli & VIP teaser */
.home-heli-teaser {
  background: linear-gradient(135deg, #0F1B33 0%, #1B2A4A 55%, #162840 100%);
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}

.home-heli-teaser::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240, 168, 60, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-heli-teaser__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-heli-teaser__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
}

.home-heli-teaser__eyebrow i {
  font-size: 15px;
}

.home-heli-teaser__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}

.home-heli-teaser__title em {
  font-style: italic;
  color: var(--saffron);
}

.home-heli-teaser__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--parchment);
  opacity: 0.85;
  margin-bottom: 22px;
  max-width: 480px;
}

.home-heli-teaser__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-heli-teaser__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--parchment);
  opacity: 0.9;
}

.home-heli-teaser__points i {
  color: var(--saffron);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.home-heli-teaser__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--saffron);
  color: var(--dusk-deep);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
  box-shadow: 0 8px 24px rgba(240, 168, 60, 0.35);
}

.home-heli-teaser__btn:hover {
  transform: translateY(-2px);
  gap: 14px;
  box-shadow: 0 12px 28px rgba(240, 168, 60, 0.45);
}

.home-heli-teaser__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-heli-teaser__card {
  background: rgba(247, 243, 234, 0.06);
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 16px;
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.home-heli-teaser__card:hover {
  border-color: rgba(240, 168, 60, 0.35);
  transform: translateX(4px);
}

.home-heli-teaser__card--vip {
  border-color: rgba(216, 103, 74, 0.25);
}

.home-heli-teaser__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(240, 168, 60, 0.15);
  color: var(--saffron);
  font-size: 20px;
  margin-bottom: 12px;
}

.home-heli-teaser__card--vip .home-heli-teaser__card-icon {
  background: rgba(216, 103, 74, 0.18);
  color: var(--vermilion);
}

.home-heli-teaser__card h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.home-heli-teaser__card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--parchment);
  opacity: 0.78;
  margin: 0;
}

@media (max-width: 900px) {
  .home-heli-teaser {
    padding: 56px 20px 64px;
  }
  .home-heli-teaser__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-heli-teaser__desc {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .home-heli-teaser__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Homepage — Ghoda & Palki (compact routes) */
.home-pony-palki {
  background: var(--parchment);
  padding: 56px 20px 64px;
}

.home-pony-palki__head {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-pony-palki__head .section-desc {
  color: var(--dusk-mid);
  opacity: 0.85;
  font-size: 14px;
}

.home-pony-palki__routes {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.home-pony-palki__route {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(27, 42, 74, 0.08);
  box-shadow: 0 8px 20px rgba(15, 27, 51, 0.06);
}

.home-pony-palki__route--compact {
  grid-template-columns: 100px 1fr;
}

.home-pony-palki__route-media {
  position: relative;
  min-height: 100%;
}

.home-pony-palki__route-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.home-pony-palki__route-media--sm img {
  min-height: 100%;
}

.home-pony-palki__route-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--saffron);
  color: var(--dusk-deep);
}

.home-pony-palki__route-badge--yam {
  background: var(--vermilion);
  color: var(--cream);
}

.home-pony-palki__route-badge--muted {
  background: rgba(15, 27, 51, 0.75);
  color: var(--cream);
}

.home-pony-palki__route-body {
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-pony-palki__route-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dusk-deep);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.25;
  margin: 0;
}

.home-pony-palki__route-body h3 i {
  color: var(--saffron);
  font-size: 14px;
}

.home-pony-palki__km {
  font-size: 12px;
  font-weight: 600;
  color: var(--vermilion);
  margin: 0;
}

.home-pony-palki__services {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--dusk-mid);
}

.home-pony-palki__services li {
  margin-bottom: 4px;
}

.home-pony-palki__services strong {
  color: var(--dusk-deep);
  font-weight: 700;
}

.home-pony-palki__note,
.home-pony-palki__route--compact p {
  font-size: 11.5px;
  color: var(--dusk-mid);
  opacity: 0.9;
  line-height: 1.45;
  margin: 0;
}

.home-pony-palki__book {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.home-pony-palki__book-call,
.home-pony-palki__book-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.home-pony-palki__book-call {
  background: var(--dusk-mid);
  color: var(--cream);
}

.home-pony-palki__book-wa {
  background: #22c55e;
  color: #fff;
}

.home-pony-palki__book-call:hover,
.home-pony-palki__book-wa:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.home-pony-palki__notice {
  max-width: 960px;
  margin: 20px auto 0;
  padding: 12px 16px;
  background: rgba(15, 27, 51, 0.06);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--dusk-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.home-pony-palki__notice i {
  color: var(--saffron);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.home-pony-palki__cta-row {
  max-width: 960px;
  margin: 16px auto 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-pony-palki__cta-call,
.home-pony-palki__cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-pony-palki__cta-call {
  background: var(--dusk-deep);
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(15, 27, 51, 0.2);
}

.home-pony-palki__cta-wa {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}

.home-pony-palki__cta-call:hover,
.home-pony-palki__cta-wa:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .home-pony-palki {
    padding: 44px 16px 52px;
  }

  .home-pony-palki__routes {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-pony-palki__route {
    grid-template-columns: 120px 1fr;
  }

  .home-pony-palki__route--compact {
    grid-template-columns: 88px 1fr;
  }

  .home-pony-palki__route-media img {
    min-height: 140px;
  }

  .home-pony-palki__cta-row {
    flex-direction: column;
  }

  .home-pony-palki__cta-call,
  .home-pony-palki__cta-wa {
    width: 100%;
    justify-content: center;
  }
}