:root {
  --mt-pink: #d60d45;
  --mt-blue: #005294;
  --mt-text-light: #f9fafb;
  --mt-muted: #d1d5db;
  --mt-body-bg: #f5f6fb;
  --ink: #0b1220;
  --ink2: #2a3550;
  --card: #ffffff;
  --line: rgba(11, 18, 32, .10);
  --shadow: 0 14px 40px rgba(11, 18, 32, .10);
  --shadow2: 0 10px 24px rgba(11, 18, 32, .12);
  --r16: 16px;
  --r20: 20px;
  --r24: 24px;
  --max-width: 1180px;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  background: var(--mt-body-bg);
  color: #111827;
  scroll-behavior: smooth
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* GLOBAL CONTAINER USED SITE-WIDE */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
  width: 100%;
  box-sizing: border-box;
}



/* ========== HERO BACKGROUND ========== */
.hero-mt {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: visible;
  /* important for slider */
}

/* MAIN SLIDER WRAPPER */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* overflow: hidden; */
}

/* INDIVIDUAL SLIDE LAYERS */
.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;

  /* your LIGHTER gradient overlay */
  background-image:
    linear-gradient(180deg,
      rgba(0, 20, 60, 0.15) 0%,
      rgba(0, 25, 70, 0.22) 45%,
      rgba(3, 10, 28, 0.30) 100%),
    var(--bg);

  opacity: 0;
  animation: fadeSlide 24s infinite ease-in-out;
}

/* APPLY REAL IMAGE ON EACH SLIDE */
.hero-slider .slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slider .slide:nth-child(2) {
  animation-delay: 8s;
}

.hero-slider .slide:nth-child(3) {
  animation-delay: 16s;
}

/* FADE ANIMATION */
@keyframes fadeSlide {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  35% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Keep content above background nicely */
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 120px 24px 60px;
  /* top padding keeps text below header */
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 110px);
  position: relative;
  z-index: 1;
}

/* ========== TOP BAR ========== */
.enhanced-topbar {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 0;
  position: relative;
  z-index: 20;
}

/* INNER LAYOUT */
.mt-topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f1f5f9;
  font-size: 15px;
  letter-spacing: 0.3px;
}

/* LEFT PART */
.mt-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.92;
}

.mt-topbar-left i {
  font-size: 15px;
  color: #e2e8f0;
}

/* RIGHT PART */
.mt-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* SOCIAL ICONS */
.enhanced-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 15px;
  transition: 0.25s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.18);
}

/* ========== MAIN HEADER ========== */
.mt-header {
  width: 100%;
  background: radial-gradient(circle at top left, rgba(214, 13, 69, 0.3), transparent 55%),
    rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  position: relative;
  z-index: 5;
  overflow: visible !important;
}

.mt-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Optional: prevents layout shift if you add borders/shadows elsewhere */
.mt-header-inner {
  width: 100%;
}


.mt-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mt-logo {
  height: 50px;
  object-fit: contain;
}

/* Right side wrapper: Quote + Burger (so they stay in one row) */
.mt-header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* NAVIGATION (desktop) */
.mt-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.mt-nav a {
  color: #f3f4f6;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.mt-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #d60d45;
  transition: width 0.2s ease;
}

.mt-nav a:hover {
  color: #e11d48;
}

.mt-nav a:hover::after {
  width: 100%;
}

/* DROPDOWN (desktop) */
.mt-nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  display: none;

  background: rgba(3, 7, 18, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
  z-index: 20;

  /* 🔹 auto width as per content */
  width: max-content;

  /* 🔹 2 columns that fit content */
  grid-template-columns: max-content max-content;
  column-gap: 26px;
  padding: 6px 0;

  /* safety for smaller screens */
  max-width: 92vw;
  overflow-x: auto;
}

.mt-nav-item:hover .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #e5e7eb;
  font-size: 13px;

  /* 🔹 no wrap */
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(148, 163, 184, 0.18);
}


/* CTA BUTTON */
.mt-btn-quote {
  background: linear-gradient(135deg, #d60d45, #005294);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  transition: 0.2s ease;
  /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8); */
}

.mt-btn-quote:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6); */
}

/* ================= HAMBURGER BUTTON ================= */
.mt-nav-toggle {
  display: none;
  width: 36px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: radial-gradient(circle at top left, rgba(214, 13, 69, 0.4), rgba(15, 23, 42, 0.95));
  cursor: pointer;
  padding: 6px 7px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.mt-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #f9fafb;
  transition: 0.25s ease;
}

/* X state */
.mt-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mt-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mt-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================= MOBILE NAV PANEL ================= */
.mt-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.99));
  border-top: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  padding: 10px 0 14px;
  border-radius: 0 0 18px 18px;
  position: relative;
  z-index: 30;
  overflow: hidden;
}

/* open state */
.mt-nav-mobile.is-open {
  display: flex;
}

/* common row style */
.mt-nav-mobile a,
.mt-mobile-dd-toggle {
  text-align: left;
  padding: 11px 18px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(30, 41, 59, 0.95);
}

/* last normal link without extra border bottom (FOLLOW US section has its own) */
.mt-nav-mobile a:last-of-type {
  border-bottom: none;
}

/* Packages toggle row */
.mt-mobile-dd-toggle {
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mt-mobile-dd-toggle i {
  font-size: 12px;
  opacity: 0.9;
  transition: 0.24s ease;
}

.mt-mobile-dd-toggle.is-open i {
  transform: rotate(180deg);
}

/* sub menu under Packages */
.mt-mobile-dd {
  display: none;
  flex-direction: column;
  padding-left: 18px;
  background: rgba(15, 23, 42, 0.96);
}

.mt-mobile-dd a {
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.9);
}

.mt-mobile-dd.is-open {
  display: flex;
}

/* ================= FOLLOW US BLOCK INSIDE MENU ================= */
.mt-nav-mobile-social {
  display: none;
  /* only show on mobile  */
}

/* ========== CENTER HERO TEXT ========== */
.hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-main {
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #e0e7ff;
  margin-bottom: 14px;
}

.hero-heading {
  font-size: 44px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* ========== INTRO SECTION ========== */

/* Intro section background */
.mt-intro {
  background: #f7f9fc;
  padding: 40px 0;
}

/* Badge row */
.mt-intro-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 82, 148, 0.06);
  margin-bottom: 18px;
}

.mt-intro-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  background: #005294;
  padding: 4px 10px;
  border-radius: 999px;
}

.mt-intro-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: #005294;
}

/* Title */
.mt-intro-title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 800;
  color: #0c2136;
  margin: 0 0 6px;
}

.mt-intro-title span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #d60d45;
}

/* Sub line */
.mt-intro-sub {
  font-size: 18px;
  font-weight: 600;
  color: #6f7c90;
  margin: 4px 0 14px;
}

/* Underline accent */
.mt-intro-underline {
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d60d45, #f2b44d);
  margin-bottom: 22px;
}

/* Text */
.mt-intro-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #445064;
  margin-bottom: 10px;
}

.mt-intro-text p strong {
  color: #0c2136;
}

/* Chips row */
.mt-intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mt-chip {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 82, 148, 0.12);
  color: #005294;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* taxi */
.mt-taxi-section {
  padding: 55px 0 60px;
}

.mt-taxi-head {
  text-align: left;
  margin-bottom: 26px;
}

.mt-taxi-title {
  font-size: 28px;
  font-weight: 800;
  color: #0c2136;
  margin: 0 0 6px;
}

.mt-taxi-sub {
  font-size: 15.5px;
  color: #5c6a7f;
  max-width: 620px;
}

/* GRID: 3 cards in a row on desktop */
.mt-taxi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Card */
.mt-taxi-card {
  background: #f9fbff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 82, 148, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mt-taxi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Top strip */
.mt-taxi-top-strip {
  position: absolute;
  top: 14px;
  left: 18px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.sedan-strip {
  background: #005294;
}

.suv-strip {
  background: #d60d45;
}

.tempo-strip {
  background: #f2b44d;
}

/* IMAGE – full width */
.mt-taxi-img {
  border-radius: 18px 18px 0 0;
  /* match card */
  overflow: hidden;
  background: #ffffff;
}

.mt-taxi-img img {
  display: block;
  width: 100%;
  height: 198px;
  object-fit: cover;
  /* full area fill, thoda crop ho sakta hai */
  object-position: center;
}


/* Body */
.mt-taxi-body {
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}


.mt-taxi-name {
  font-size: 18px;
  font-weight: 700;
  color: #0c2136;
  margin-bottom: 4px;
}

.mt-taxi-meta {
  font-size: 13px;
  color: #6a768a;
  margin-bottom: 10px;
}

/* Features */
.mt-taxi-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13.5px;
  color: #4a566b;
}

.mt-taxi-features li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.mt-taxi-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d60d45, #005294);
  position: absolute;
  left: 0;
  top: 7px;
}

/* Bottom area */
.mt-taxi-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}

.mt-taxi-price {
  font-size: 13px;
  color: #4a566b;
}

.mt-taxi-price strong {
  display: block;
  font-size: 17px;
  color: #d60d45;
}

.mt-taxi-price span {
  font-size: 11px;
  color: #7a8699;
}

/* Buttons row */
.mt-taxi-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mt-taxi-btn-primary,
.mt-taxi-btn-ghost {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.mt-taxi-btn-primary {
  background: linear-gradient(135deg, #d60d45, #005294);
  color: #ffffff;
}

.mt-taxi-btn-ghost {
  border: 1px solid rgba(0, 82, 148, 0.25);
  color: #005294;
  background: #ffffff;
}

/* Note */
.mt-taxi-note {
  margin-top: 18px;
  font-size: 12px;
  color: #7a8699;
}

.mt-taxi-meta-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #5c6a7f;
  margin-bottom: 12px;
}

.mt-taxi-meta-icons span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef3fb;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.mt-taxi-meta-icons i {
  font-size: 12px;
  color: #005294;
}


/* package card */
/* ================== NX TOUR CARDS (UPDATED FIXES) ================== */
.nx-tour-section {
  padding: 40px 0 40px;
  background: #fff;
}

/* ================== SECTION HEADING (LEFT STYLE) ================== */
.nx-sec-head {
  text-align: left;
  /* CHANGED */
  padding: 10px 0 26px;
  margin-bottom: 22px;
}

.nx-sec-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #d60d45;
  margin-bottom: 10px;
  position: relative;
}

/* tiny side lines like premium headings */
.nx-sec-kicker::before,
.nx-sec-kicker::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: rgba(0, 82, 148, .35);
  vertical-align: middle;
  margin: 0 10px;
  border-radius: 2px;
}

.nx-sec-title {
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 950;
  color: #0c2136;
  line-height: 1.15;
}

/* ornament under heading – align left */
.nx-sec-ornament {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* CHANGED */
  gap: 10px;
  margin: 0 0 14px;
  /* CHANGED */
}

.nx-sec-line {
  width: 62px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d60d45, #005294);
  opacity: .9;
}

.nx-sec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d60d45;
  box-shadow: 0 10px 18px rgba(214, 13, 69, .18);
}

/* paragraph – left aligned */
.nx-sec-para {
  margin: 0;
  /* CHANGED */
  max-width: 920px;
  font-size: 16px;
  line-height: 1.85;
  color: #5b6a80;
}





.nx-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Card */
.nx-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 82, 148, .10);
  box-shadow: 0 18px 55px rgba(16, 24, 40, .12);
  transition: transform .18s ease, box-shadow .18s ease;
}

.nx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 72px rgba(16, 24, 40, .18);
}

/* Media */
.nx-media {
  position: relative;
  height: 230px;
  background: #fff;
  overflow: hidden;
}

.nx-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TOP LEFT TAG */
.nx-img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #d60d45;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(214, 13, 69, .20);
}

.nx-img-tag-blue {
  background: #005294;
  box-shadow: 0 10px 20px rgba(0, 82, 148, .18);
}

.nx-img-tag-gold {
  background: #c28e1f;
  box-shadow: 0 10px 20px rgba(194, 142, 31, .18);
}

/* TOP RIGHT TIME */
.nx-img-time {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #0c2136;
  font-size: 11.5px;
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.nx-img-time i {
  color: #005294;
}

/* Body */
.nx-body {
  padding: 16px 16px 18px;
  background:
    radial-gradient(900px 220px at 20% 0%, rgba(214, 13, 69, .06), transparent 55%),
    radial-gradient(900px 220px at 85% 10%, rgba(0, 82, 148, .06), transparent 55%),
    #fff;
}

/* Top line */
.nx-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.nx-name {
  margin: 0;
  font-size: 18.5px;
  font-weight: 950;
  color: #0c2136;
  line-height: 1.25;
  max-width: 70%;
}

/* SMALL TRUST (not big) */
.nx-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  white-space: nowrap;
  margin-top: 2px;
}

.nx-stars {
  color: #f4b400;
  font-size: 13px;
  line-height: 1;
}

.nx-rating-text {
  color: #5c6a7f;
  font-weight: 850;
}

/* Location */
.nx-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 850;
  color: #d60d45;
}

.nx-loc i {
  color: #d60d45;
}

/* Chips */
.nx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.nx-chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f3f6fb;
  border: 1px solid rgba(0, 82, 148, .10);
  color: #2f3f55;
  font-size: 12.8px;
  font-weight: 900;
}

.nx-chip i {
  color: #005294;
}

/* Points */
.nx-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13.6px;
  color: #4a566b;
}

.nx-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
}

.nx-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d60d45, #005294);
  position: absolute;
  left: 0;
  top: 7px;
}

/* Footer */
.nx-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 82, 148, .10);
}

.nx-price span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #7a8699;
  margin-bottom: 2px;
}

.nx-price strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
  color: #d60d45;
  line-height: 1;
}

.nx-price em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: #7a8699;
  margin-top: 3px;
  font-weight: 800;
}

/* Buttons in row */
.nx-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nx-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.nx-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d60d45, #005294);
  box-shadow: 0 14px 26px rgba(214, 13, 69, .18);
}

.nx-btn-ghost {
  background: #fff;
  color: #005294;
  border: 1px solid rgba(0, 82, 148, .28);
}

/* about us */
/* ================== UNIQUE ABOUT US (abtX) – FULL UPDATED CSS ================== */
.abtX {
  padding: 58px 0 64px;
  background:
    radial-gradient(1100px 420px at 6% -10%, rgba(214, 13, 69, .12), transparent 60%),
    radial-gradient(1100px 420px at 94% 0%, rgba(0, 82, 148, .14), transparent 62%),
    radial-gradient(900px 320px at 52% 110%, rgba(214, 13, 69, .08), transparent 65%),
    #ffffff;
}

.abtX-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

/* LEFT */

.abtX-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #005294;
  margin-bottom: 10px;
}

.abtX-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d60d45, #005294);
  box-shadow: 0 10px 18px rgba(214, 13, 69, .18);
}

.abtX-title {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 950;
  color: #0c2136;
  line-height: 1.12;
  letter-spacing: -.2px;
}

.abtX-hl {
  position: relative;
  border: none;
  background: transparent;
  padding: 0 2px;
}

.abtX-hl::before {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(214, 13, 69, .22), rgba(0, 82, 148, .18));
  z-index: -1;
}

.abtX-para {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.85;
  color: #46556c;
}

.abtX-para2 {
  margin-bottom: 14px;
}

/* Trust pills */
.abtX-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 16px;
}

.abtX-pill {
  background: #fff;
  border: 1px solid rgba(0, 82, 148, .10);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, .07);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 92px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.abtX-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(16, 24, 40, .12);
  border-color: rgba(0, 82, 148, .18);
}

.abtX-pill i {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(214, 13, 69, .12), rgba(0, 82, 148, .12));
  border: 1px solid rgba(0, 82, 148, .10);
  color: #d60d45;
  flex: 0 0 auto;
}

.abtX-pill strong {
  display: block;
  font-size: 13.6px;
  font-weight: 950;
  color: #0c2136;
  line-height: 1.1;
}

.abtX-pill span {
  display: block;
  margin-top: 4px;
  font-size: 12.6px;
  font-weight: 800;
  color: #5c6a7f;
}

/* CTAs */
.abtX-ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.abtX-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.abtX-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d60d45, #005294);
  box-shadow: 0 18px 34px rgba(0, 82, 148, .14), 0 16px 30px rgba(214, 13, 69, .12);
}

.abtX-btn-ghost {
  color: #005294;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 82, 148, .28);
  backdrop-filter: blur(8px);
}

.abtX-note {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.8px;
  font-weight: 850;
  color: #5c6a7f;
}

.abtX-note i {
  color: #005294;
}

/* RIGHT */
.abtX-right {
  position: relative;
}

.abtX-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), #fff 55%),
    radial-gradient(900px 260px at 20% 0%, rgba(214, 13, 69, .08), transparent 62%),
    radial-gradient(900px 260px at 95% 10%, rgba(0, 82, 148, .08), transparent 62%);
  border-radius: 24px;
  border: 1px solid rgba(0, 82, 148, .12);
  box-shadow: 0 28px 90px rgba(16, 24, 40, .14);
  overflow: hidden;
  padding: 16px 16px 14px;
  z-index: 2;
}

.abtX-cardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.abtX-badge {
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d60d45, #b80b3a);
}

.abtX-mini {
  font-size: 12.5px;
  font-weight: 900;
  color: #005294;
  display: flex;
  align-items: center;
  gap: 8px;
}

.abtX-cardTitle {
  margin: 6px 0 12px;
  font-size: 18px;
  font-weight: 950;
  color: #0c2136;
}

/* Flow steps */
.abtX-flow {
  display: grid;
  gap: 10px;
}

.abtX-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 82, 148, .10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.abtX-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(16, 24, 40, .10);
  border-color: rgba(0, 82, 148, .18);
}

.abtX-ic {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(214, 13, 69, .12), rgba(0, 82, 148, .12));
  border: 1px solid rgba(0, 82, 148, .12);
  color: #d60d45;
  flex: 0 0 auto;
}

.abtX-stepText strong {
  display: block;
  font-size: 13.6px;
  font-weight: 950;
  color: #0c2136;
  line-height: 1.1;
}

.abtX-stepText span {
  display: block;
  margin-top: 4px;
  font-size: 12.6px;
  font-weight: 800;
  color: #5c6a7f;
}

.abtX-num {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 950;
  color: #0c2136;
  background: rgba(0, 82, 148, .06);
  border: 1px solid rgba(0, 82, 148, .10);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Footer */
.abtX-cardFoot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 82, 148, .18);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.abtX-footLbl {
  display: block;
  font-size: 12px;
  font-weight: 950;
  color: #7a8699;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.abtX-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.abtX-tags span {
  font-size: 12.5px;
  font-weight: 900;
  color: #2f3f55;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 82, 148, .10);
  box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
}

/* Decorative blob behind card */
.abtX-blob {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 210px;
  height: 210px;
  border-radius: 54px;
  background: linear-gradient(135deg, rgba(214, 13, 69, .22), rgba(0, 82, 148, .22));
  opacity: .9;
  z-index: 1;
  transform: rotate(10deg);
}

/* why choose us */
/* ================= WHY CHOOSE (wcuX4) – MORE PREMIUM, NO BG RADIUS ================= */
.wcuX4 {
  position: relative;
  padding: 40px 0;

}

/* Background (NO radius) */
.wcuX4-bg {
  position: absolute;
  inset: 0;
  border-radius: 0 !important;
  background-image: url("/images/temple.webp");
  background-size: cover;
  background-position: center center;
  /* adjust later if needed */
  background-repeat: no-repeat;
  transform: none;
  /* remove extra zoom */
  filter: brightness(1.08) contrast(1.08) saturate(1.06);
  /* makes image visible */
}

/* Overlay using only theme */
.wcuX4-ov {
  position: absolute;
  inset: 0;
  border-radius: 0 !important;

  /* lighter overlay + theme tints */
  background:
    linear-gradient(90deg,
      rgba(9, 18, 28, .72) 0%,
      rgba(9, 18, 28, .55) 55%,
      rgba(9, 18, 28, .48) 100%),
    radial-gradient(900px 460px at 18% 16%, rgba(214, 13, 69, .22), transparent 62%),
    radial-gradient(900px 460px at 82% 18%, rgba(0, 82, 148, .22), transparent 62%);
}


/* subtle grain (adds premium depth) */
.wcuX4-grain {
  position: absolute;
  inset: 0;
  border-radius: 0 !important;
  opacity: .10;
  background-image:
    radial-gradient(rgba(255, 255, 255, .25) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.wcuX4-inner {
  position: relative;
  z-index: 2;
}

.wcuX4-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
}

/* Left */
.wcuX4-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wcuX4-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d60d45, #005294);
  box-shadow: 0 12px 24px rgba(214, 13, 69, .18);
}

.wcuX4-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -.35px;
  text-shadow: 0 18px 65px rgba(0, 0, 0, .40);
}

.wcuX4-title span {
  position: relative;
  padding: 0 6px;
}

.wcuX4-title span::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 3px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(214, 13, 69, .42), rgba(0, 82, 148, .34));
  z-index: -1;
}

.wcuX4-sub {
  margin: 0 0 14px;
  max-width: 560px;
  color: rgba(255, 255, 255, .88);
  font-size: 15.1px;
  line-height: 1.85;
}

/* Proof row (more premium than pills) */
.wcuX4-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 14px;
}

.wcuX4-proofItem {
  display: flex;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
}

.wcuX4-proofItem i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(214, 13, 69, .26), rgba(0, 82, 148, .22));
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.wcuX4-proofItem strong {
  display: block;
  color: #fff;
  font-size: 13.2px;
  font-weight: 950;
  line-height: 1.1;
}

.wcuX4-proofItem span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .82);
  font-size: 12.2px;
  font-weight: 850;
}

/* Strip (signature element) */
.wcuX4-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(214, 13, 69, .18), rgba(0, 82, 148, .18));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .20);
}

.wcuX4-stripIcon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.wcuX4-stripText b {
  display: block;
  color: #fff;
  font-weight: 950;
  font-size: 14.5px;
}

.wcuX4-stripText span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .86);
  font-size: 12.6px;
  font-weight: 850;
}

/* Right panel */
.wcuX4-right {
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .18);
}

/* Each row: gradient side accent (premium) */
.wcuX4-row {
  display: flex;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(0, 0, 0, .10);
  border: 1px solid rgba(255, 255, 255, .10);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.wcuX4-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d60d45, #005294);
  opacity: .9;
}

.wcuX4-row:last-child {
  margin-bottom: 0;
}

.wcuX4-num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  background: rgba(214, 13, 69, .34);
  border: 1px solid rgba(255, 255, 255, .14);
}

.wcuX4-numB {
  background: rgba(0, 82, 148, .34);
}

.wcuX4-txt h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.wcuX4-txt p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 13.2px;
  line-height: 1.6;
}

/* ================= SPECIAL TOUR DEALS ================= */
.spdX {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}

/* Background */
.spdX-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/gokul.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(1.05) contrast(1.05);
}

.spdX-ov {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 33, 54, .88) 0%, rgba(12, 33, 54, .70) 55%, rgba(12, 33, 54, .62) 100%),
    radial-gradient(900px 420px at 18% 20%, rgba(214, 13, 69, .35), transparent 60%),
    radial-gradient(900px 420px at 82% 20%, rgba(0, 82, 148, .35), transparent 60%);
}

.spdX-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

/* LEFT */
.spdX-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 13, 69, .85);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.spdX-title {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 950;
  color: #fff;
  line-height: 1.12;
}

.spdX-title span {
  color: #d60d45;
  background: rgba(255, 255, 255, .10);
  padding: 0 6px;
  border-radius: 6px;
}

.spdX-desc {
  max-width: 540px;
  color: rgba(255, 255, 255, .88);
  font-size: 15.3px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.spdX-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spdX-features span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 12.6px;
  font-weight: 850;
}

/* RIGHT DEALS */
.spdX-right {
  display: grid;
  gap: 12px;
}

.spdX-deal {
  position: relative;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .20);
  overflow: hidden;
}

.spdX-deal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d60d45, #005294);
}

.spdX-dealTag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  background: #d60d45;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.spdX-blue {
  background: #005294;
}

.spdX-deal h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 950;
  color: #0c2136;
}

.spdX-deal p {
  margin: 0 0 10px;
  font-size: 13.4px;
  color: #5b6a80;
}

.spdX-dealFoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spdX-price {
  font-size: 16px;
  font-weight: 950;
  color: #d60d45;
}

.spdX-valid {
  font-size: 12px;
  font-weight: 850;
  color: #005294;
}

/* special card */

/* ================== SECTION ================== */
.sdeals {
  padding: 40px 18px;
  background:
    radial-gradient(1100px 520px at 14% 12%, rgba(0, 82, 148, .12), transparent 60%),
    radial-gradient(1100px 520px at 88% 18%, rgba(214, 13, 69, .12), transparent 58%),
    #fff;
}

.sdeals-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.sdeals-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 22px;
}

.sdeals-kicker {
  display: inline-block;
  font-weight: 950;
  letter-spacing: .28em;
  font-size: 12px;
  color: var(--blue);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 82, 148, .20);
  background: rgba(0, 82, 148, .06);
}

.sdeals-title {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.1vw, 52px);
  line-height: 1.05;
  font-weight: 950;
  color: var(--ink);
}

.sdeals-sub {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.85;
}

/* ================== SLIDER ================== */
.sdeals-slider {
  margin-top: 12px;
}

.sdeals-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.sdeals-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transform: translateX(0);
}

/* 3 cards on desktop */
.sdeals-track>.dealCard {
  flex: 0 0 calc((100% - 36px) / 3);
}

/* Dots */
.sdeals-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sdeals-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(12, 33, 54, .22);
  background: rgba(12, 33, 54, .10);
  cursor: pointer;
  transition: transform .15s ease, width .15s ease, background .15s ease;
}

.sdeals-dot.is-active {
  width: 28px;
  background: rgba(214, 13, 69, .55);
  border-color: rgba(214, 13, 69, .65);
}

/* ================== CARD ================== */
.dealCard {
  position: relative;
  /* for ::after */
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(12, 33, 54, .18);
  box-shadow: 0 26px 80px rgba(12, 33, 54, .18);
  background: #081624;
  transform: translateZ(0);
}

.dealCard-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* inner highlight */
.dealCard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10);
  z-index: 10;
}

/* Media container */
.dealCard-media {
  position: relative;
  height: 520px;
}

/* IMAGE */
.dealCard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
  filter: contrast(1.12) saturate(1.22) brightness(1.18);
  transition: transform .45s ease, filter .45s ease;
}

.dealCard:hover .dealCard-media img {
  transform: scale(1.10);
}

/* OVERLAY (BEHIND TEXT) */
.dealCard-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .10) 0%,
      rgba(0, 0, 0, .18) 45%,
      rgba(0, 0, 0, .80) 100%),
    linear-gradient(135deg,
      rgba(0, 82, 148, .28),
      rgba(214, 13, 69, .18));
}

/* TAGS / RIBBON (ABOVE OVERLAY) */
.dealCard-tag,
.dealCard-ribbon {
  position: absolute;
  z-index: 4;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .35);
}

.dealCard-tag {
  left: 16px;
  top: 16px;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .10em;
  padding: 10px 14px;
  border-radius: 999px;
}

.dealCard-tag--pink {
  background: #d60d45e0;
}

.dealCard-tag--blue {
  background: rgba(0, 82, 148, .88);
}

.dealCard-ribbon {
  right: 16px;
  top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(12, 33, 54, .55);
  color: rgba(255, 255, 255, .92);
  font-weight: 900;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.dealCard-rDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d60d45e0;
  box-shadow: 0 0 0 0 rgba(214, 13, 69, 0);
  animation: drPulse 1.6s infinite;
}

@keyframes drPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 13, 69, .45);
  }

  100% {
    box-shadow: 0 0 0 16px rgba(214, 13, 69, 0);
  }
}

/* BOTTOM CONTENT (ON TOP) */
.dealCard-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  z-index: 3;
  /* IMPORTANT */
  pointer-events: auto;
  /* IMPORTANT for buttons */
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, .35) 20%,
      rgba(0, 0, 0, .90) 100%);
}

/* TEXT VISIBILITY */
.dealCard-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .98);
  font-weight: 1000;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: .2px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .65);
}

.dealCard-route {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 0 12px 28px rgba(0, 0, 0, .40);
}

.dealCard-pin {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .12);
  flex: 0 0 auto;
}

.dealCard-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.dealCard-chip {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, .95);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.dealCard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dealCard-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.dealCard-mrp {
  color: rgba(255, 255, 255, .72);
  text-decoration: line-through;
  font-weight: 900;
  font-size: 13px;
}

.dealCard-now {
  color: #fff;
  font-weight: 1000;
  font-size: 24px;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .45);
}

.dealCard-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
}

.dealCard-stars {
  letter-spacing: .12em;
  font-size: 12px;
  color: #fff;
}

.dealCard-count {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, .82);
}

/* CTA ROW */
.dealCard-ctaRow {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dealCard-cta,
.dealCard-ctaGhost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .06em;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, filter .25s ease;
}

.dealCard-cta {
  background: #d60d45e0;
}

.dealCard-ctaGhost {
  background: rgba(0, 82, 148, .88);
}

.dealCard-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(214, 13, 69, .40);
  filter: brightness(1.05);
}

.dealCard-ctaGhost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 82, 148, .40);
  filter: brightness(1.05);
}

/* Note */
.sdeals-note {
  margin: 16px auto 0;
  max-width: 860px;
  text-align: center;
  color: var(--mt-muted);
  font-size: 12.8px;
  line-height: 1.6;
  padding: 10px 12px;
}

/* taxi fare */
.rfare {
  padding: 40px 18px;
  background: #fff;
}

.rfare-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.rfare-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 26px;
}

.rfare-kicker {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  color: var(--blue);
  border: 1px solid rgba(0, 82, 148, .22);
  background: rgba(0, 82, 148, .06);
}

.rfare-title {
  margin: 14px 0 10px;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 1000;
  color: var(--ink);
}

.rfare-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.rfare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

/* Card */
.rfare-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(12, 33, 54, .10);
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.rfare-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 85px rgba(12, 33, 54, .14);
}

/* top strip */
.rfare-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(214, 13, 69, .95), rgba(0, 82, 148, .95));
}

/* Header */
.rfare-top {
  padding: 18px 18px 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.rfare-route {
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
  color: var(--ink);
}

.rfare-meta {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

/* tag */
.rfare-tag {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.rfare-tag--pink {
  background: rgba(214, 13, 69, .95);
}

.rfare-tag--blue {
  background: rgba(0, 82, 148, .95);
}

/* body rows */
.rfare-body {
  padding: 8px 12px 12px;
}

.rfare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 14px;
  transition: background .2s ease, transform .2s ease;
  position: relative;
}

.rfare-row::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(12, 33, 54, .12),
      transparent);
}

/* Remove line from last row */
.rfare-row:last-child::after {
  display: none;
}

.rfare-row:hover {
  background: rgba(0, 82, 148, .06);
  transform: translateX(2px);
}

.rfare-car {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--ink);
}

.rfare-car small {
  font-weight: 700;
  color: var(--mt-muted);
  margin-left: 6px;
}

.rfare-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d60d45e0;
  box-shadow: 0 0 0 6px rgba(214, 13, 69, .10);
}

/* price pill */
.rfare-price {
  font-weight: 1000;
  color: var(--ink);
  background: rgba(12, 33, 54, .06);
  border: 1px solid rgba(12, 33, 54, .10);
  padding: 8px 12px;
  border-radius: 999px;
  min-width: 92px;
  text-align: center;
}

.rfare-price span {
  font-weight: 900;
  font-size: 12px;
}

.rfare-price--ask {
  background: rgba(214, 13, 69, .08);
  border-color: rgba(214, 13, 69, .22);
  color: var(--pink);
}

/* footer buttons */
.rfare-foot {
  padding: 16px 18px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rfare-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.rfare-btn--blue {
  color: #fff;
  background: rgba(0, 82, 148, .95);
  box-shadow: 0 14px 35px rgba(0, 82, 148, .18);
}

.rfare-btn--pink {
  color: #fff;
  background: rgba(214, 13, 69, .95);
  box-shadow: 0 14px 35px rgba(214, 13, 69, .18);
}

.rfare-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.rfare-note {
  margin: 18px auto 0;
  max-width: 920px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mt-muted);
}

/* hotels */

/* ===== SECTION ===== */
.mhx-hotels {
  padding: 40px 18px;
  background:
    radial-gradient(1100px 520px at 12% 12%, rgba(0, 82, 148, .12), transparent 60%),
    radial-gradient(1100px 520px at 90% 18%, rgba(214, 13, 69, .12), transparent 58%),
    var(--mt-body-bg);
}

.mhx-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

.mhx-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 26px;
}

.mhx-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 82, 148, .08);
  border: 1px solid rgba(0, 82, 148, .22);
  color: var(--mt-blue);
  font-weight: 950;
  letter-spacing: .18em;
  font-size: 12px;
}

.mhx-pill i {
  color: var(--mt-pink);
}

.mhx-title {
  margin: 14px 0 8px;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 1000;
  color: var(--ink);
}

.mhx-sub {
  margin: 0;
  color: #5a6b7b;
  font-size: 15px;
  line-height: 1.75;
}

.mhx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* ===== CARD (Fresh: Split + Ribbon + Compact) ===== */
.mhx-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 70px rgba(12, 33, 54, .12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mhx-card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 33, 54, .18);
  box-shadow: 0 34px 120px rgba(12, 33, 54, .18);
}

/* diagonal ribbon */
.mhx-ribbon {
  position: absolute;
  top: 16px;
  right: -48px;
  transform: rotate(35deg);
  padding: 8px 64px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .12em;
  color: #fff;
  background: linear-gradient(135deg, var(--mt-pink), #b70a3a);
  box-shadow: 0 18px 55px rgba(214, 13, 69, .28);
  z-index: 6;
  text-transform: uppercase;
}

/* media: compact but clear */
.mhx-media {
  position: relative;
  height: 200px;
  background: #0b1c2e;
}

.mhx-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(1.12) brightness(1.05);
  transform: scale(1.02);
  transition: transform .55s ease, filter .55s ease;
}

.mhx-card:hover .mhx-media img {
  transform: scale(1.09);
}

/* top rating + price (fresh: pill + notch) */
.mhx-rating {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  font-size: 13px;
  background: rgba(12, 33, 54, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .22);
}

.mhx-rating i {
  color: #ffd400;
}

.mhx-price {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 5;
  padding: 10px 12px 10px 12px;
  border-radius: 16px 16px 16px 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--mt-pink), #b70a3a 55%, rgba(0, 82, 148, .75) 140%);
  box-shadow: 0 18px 60px rgba(214, 13, 69, .40);
  overflow: hidden;
}

.mhx-price::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(120deg, transparent 45%, rgba(255, 255, 255, .30) 55%, transparent 65%);
  transform: translateX(-55%) rotate(10deg);
  transition: transform .7s ease;
}

.mhx-card:hover .mhx-price::after {
  transform: translateX(55%) rotate(10deg);
}

.mhx-price small {
  display: block;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  opacity: .95;
  text-transform: uppercase;
}

.mhx-price span {
  display: block;
  font-size: 20px;
  font-weight: 1000;
  line-height: 1.05;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

/* ===== BODY (Fresh: “info rail”) ===== */
.mhx-body {
  padding: 14px 14px 14px;
}

.mhx-nameRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.mhx-name {
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
  color: var(--ink);
  line-height: 1.2;
}

.mhx-verified {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .06em;
  background: rgba(0, 82, 148, .08);
  border: 1px solid rgba(0, 82, 148, .18);
  color: var(--mt-blue);
  white-space: nowrap;
}

.mhx-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #5b6d7f;
  font-size: 13px;
  line-height: 1.6;
}

.mhx-loc i {
  color: var(--mt-pink);
}

/* info rail (fresh look) */
.mhx-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.mhx-railItem {
  border-radius: 14px;
  padding: 10px 10px;
  background: linear-gradient(180deg, rgba(245, 246, 251, 1), rgba(255, 255, 255, 1));
  border: 1px solid rgba(12, 33, 54, .10);
  box-shadow: 0 10px 28px rgba(12, 33, 54, .06);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.mhx-railIcon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(214, 13, 69, .10);
  border: 1px solid rgba(214, 13, 69, .18);
  color: var(--mt-pink);
  flex: 0 0 auto;
}

.mhx-railItem:nth-child(2) .mhx-railIcon {
  background: rgba(0, 82, 148, .10);
  border-color: rgba(0, 82, 148, .18);
  color: var(--mt-blue);
}

.mhx-railItem:nth-child(3) .mhx-railIcon {
  background: rgba(12, 33, 54, .06);
  border-color: rgba(12, 33, 54, .12);
  color: #0c2136;
}

.mhx-railText b {
  display: block;
  font-size: 12px;
  color: #0c2136;
  font-weight: 1000;
  line-height: 1.15;
}

.mhx-railText span {
  display: block;
  font-size: 11px;
  color: #6a7a8a;
  font-weight: 900;
  margin-top: 2px;
}

/* compact chips */
.mhx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.mhx-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  background: rgba(0, 82, 148, .06);
  border: 1px solid rgba(0, 82, 148, .18);
  color: #0c2136;
}

.mhx-chip i {
  color: var(--mt-blue);
}

.mhx-chip.is-pink {
  background: rgba(214, 13, 69, .06);
  border-color: rgba(214, 13, 69, .18);
}

.mhx-chip.is-pink i {
  color: var(--mt-pink);
}

/* buttons */
.mhx-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mhx-btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.mhx-btn.view {
  background: linear-gradient(180deg, #fff, #f4f7ff);
  color: var(--mt-blue);
  border: 1.6px solid rgba(0, 82, 148, .42);
  box-shadow: 0 12px 28px rgba(0, 82, 148, .10);
}

.mhx-btn.view:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 82, 148, .18);
  border-color: rgba(0, 82, 148, .60);
}

.mhx-btn.book {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--mt-pink), #b70a3a 55%, rgba(0, 82, 148, .72) 140%);
  box-shadow: 0 16px 55px rgba(214, 13, 69, .35);
  position: relative;
  overflow: hidden;
}

.mhx-btn.book::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(120deg, transparent 45%, rgba(255, 255, 255, .28) 55%, transparent 65%);
  transform: translateX(-55%) rotate(10deg);
  transition: transform .65s ease;
}

.mhx-btn.book:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(214, 13, 69, .48);
}

.mhx-btn.book:hover::after {
  transform: translateX(55%) rotate(10deg);
}

/* review */
.mt-review-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
}

.mt-review-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 35px;
}

.mt-review-kicker {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  color: var(--blue);
  border: 1px solid rgba(0, 82, 148, .22);
  background: rgba(0, 82, 148, .06);
}

.mt-review-title {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  margin: 8px 0 10px;
}

.mt-review-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Rating strip */
.mt-rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.mt-rating-box {
  background: #005294;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
}

.mt-rating-box strong {
  font-size: 26px;
  display: block;
}

.mt-rating-box span {
  font-size: 13px;
  opacity: 0.9;
}

.mt-rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d60d45;
  font-size: 16px;
}

.mt-rating-stars span {
  margin-left: 10px;
  font-size: 14px;
  color: #444;
}

/* Review cards */
.mt-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.mt-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.mt-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.mt-review-card.highlight {
  border-top: 4px solid #d60d45;
}

.mt-review-top i {
  font-size: 26px;
  color: #005294;
  opacity: 0.2;
}

.mt-review-text {
  font-size: 15px;
  color: #333;
  line-height: 1.65;
  margin: 14px 0 18px;
}

.mt-review-user strong {
  font-size: 15px;
  color: #111;
}

.mt-review-user span {
  display: block;
  font-size: 13px;
  color: #666;
}

/* route */
/* ===== Routes v2 (Premium Upgrade) ===== */
.mt-routes-v2 {
  padding: 40px 0;
  background:
    radial-gradient(1100px 520px at 12% 12%, rgba(0, 82, 148, .12), transparent 60%),
    radial-gradient(1100px 520px at 90% 18%, rgba(214, 13, 69, .12), transparent 58%),
    var(--mt-body-bg);
}

.mt-routes-v2 .mt-routes-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
}

.mt-routes-v2 .mt-routes-kicker {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  color: var(--blue);
  border: 1px solid rgba(0, 82, 148, .22);
  background: rgba(0, 82, 148, .06);
}

.mt-routes-v2 .mt-routes-title {
  font-size: 34px;
  font-weight: 950;
  color: #0f1217;
  margin: 10px 0 10px;
}

.mt-routes-v2 .mt-routes-sub {
  font-size: 15px;
  color: #5b6572;
  line-height: 1.75;
}

.mt-routes-metaLine {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mt-metaPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #d60d45;
  background: rgba(214, 13, 69, 0.10);
  border: 1px solid rgba(214, 13, 69, 0.16);
}

.mt-metaPill.blue {
  color: #005294;
  background: rgba(0, 82, 148, 0.10);
  border-color: rgba(0, 82, 148, 0.16);
}

.mt-metaPill i {
  font-size: 13px;
}

.mt-routes-v2 .mt-routes-wrap {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: stretch;
}

/* ===== Route List (left) ===== */
.mt-route-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* clickable row */
.mt-route-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 16px 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(16, 19, 24, 0.10);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mt-route-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 82, 148, 0.22);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.10);
}

/* left accent rail */
.mt-route-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #005294, #d60d45);
  opacity: .55;
}

.mt-route-item:hover .mt-route-accent {
  opacity: .9;
}

/* icon glass */
.mt-route-ic {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 82, 148, 0.10), rgba(214, 13, 69, 0.10));
  border: 1px solid rgba(0, 82, 148, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  flex: 0 0 52px;
}

.mt-route-ic i {
  font-size: 18px;
  color: #005294;
}

/* content */
.mt-route-main {
  flex: 1;
  min-width: 0;
}

.mt-route-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mt-route-name {
  font-size: 16px;
  font-weight: 950;
  color: #0f1217;
  margin: 0;
  line-height: 1.25;
}

.mt-route-pill {
  font-size: 12px;
  font-weight: 900;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(214, 13, 69, 0.10);
  color: #d60d45;
  white-space: nowrap;
  border: 1px solid rgba(214, 13, 69, 0.18);
}

.mt-route-pill.blue {
  background: rgba(0, 82, 148, 0.10);
  color: #005294;
  border-color: rgba(0, 82, 148, 0.18);
}

.mt-route-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 9px;
  color: #5c6571;
  font-size: 13px;
}

.mt-route-meta i {
  color: #d60d45;
  margin-right: 6px;
}

/* arrow button */
.mt-route-go {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #005294;
  color: #fff;
  flex: 0 0 42px;
  box-shadow: 0 14px 26px rgba(0, 82, 148, 0.20);
  transition: transform .25s ease, background .25s ease;
}

.mt-route-item:hover .mt-route-go {
  transform: translateX(4px);
  background: #d60d45;
  box-shadow: 0 14px 26px rgba(214, 13, 69, 0.22);
}

/* ===== Right Side Option A: Photo + Chips ===== */
.mt-route-sideA {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 24, 0.10);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  background: #fff;
  min-height: 320px;
}

.mt-sideA-hero {
  position: relative;
  padding: 18px;
  min-height: 220px;
  background-image:
    url("/images/prem-mandir.webp");
  background-size: cover;
  background-position: center;
}

.mt-sideA-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 82, 148, 0.80), rgba(214, 13, 69, 0.55));
}

.mt-sideA-top {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mt-sideA-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.mt-sideA-tag.blue {
  background: rgba(255, 255, 255, 0.14);
}

.mt-sideA-title {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  color: #fff;
  max-width: 360px;
}

.mt-sideA-title h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.2px;
}

.mt-sideA-title p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.95;
}

.mt-sideA-body {
  padding: 14px;
}

.mt-sideA-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mt-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fbfcff);
  border: 1px solid rgba(0, 82, 148, 0.14);
  text-decoration: none;
  color: #0f1217;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  transition: transform .2s ease, border-color .2s ease;
}

.mt-chip i {
  color: #d60d45;
}

.mt-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 13, 69, 0.24);
}

.mt-sideA-help {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 82, 148, 0.06);
  border: 1px solid rgba(0, 82, 148, 0.12);
}

.mt-sideA-help-ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(214, 13, 69, 0.10);
  border: 1px solid rgba(214, 13, 69, 0.16);
  color: #d60d45;
  flex: 0 0 46px;
}

.mt-sideA-help-txt strong {
  display: block;
  font-size: 14px;
  font-weight: 950;
  color: #0f1217;
  margin-bottom: 2px;
}

.mt-sideA-help-txt span {
  display: block;
  font-size: 13px;
  color: #5b6572;
  line-height: 1.5;
}

.mt-sideA-help-go {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #005294;
  color: #fff;
  flex: 0 0 38px;
}

/* faq */
.mt-faq {
  padding: 40px 0;
  background: #fff;
}

.mt-faq-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 22px;
}

.mt-faq-kicker {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  color: var(--blue);
  border: 1px solid rgba(0, 82, 148, .22);
  background: rgba(0, 82, 148, .06);
}

.mt-faq-title {
  margin: 10px 0 8px;
  font-size: 34px;
  font-weight: 950;
  color: #0f1217;
}

.mt-faq-sub {
  margin: 0;
  font-size: 15px;
  color: #5b6572;
  line-height: 1.75;
}

/* wrapper */
.mt-faq-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* item */
.mt-faq-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 19, 24, 0.10);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}

/* subtle left theme rail */
.mt-faq-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #005294, #d60d45);
  opacity: .55;
}

.mt-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.10);
  border-color: rgba(0, 82, 148, 0.16);
}

.mt-faq-item:hover:before {
  opacity: .9;
}

/* summary */
.mt-faq-q {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px 16px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mt-faq-q::-webkit-details-marker {
  display: none;
}

.mt-faq-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: #005294;
  background: linear-gradient(135deg, rgba(0, 82, 148, 0.10), rgba(214, 13, 69, 0.10));
  border: 1px solid rgba(0, 82, 148, 0.18);
  flex: 0 0 52px;
}

.mt-faq-qText {
  flex: 1;
  font-size: 15px;
  font-weight: 950;
  color: #0f1217;
  line-height: 1.35;
}

/* toggle button */
.mt-faq-toggle {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(0, 82, 148, 0.08);
  border: 1px solid rgba(0, 82, 148, 0.14);
  position: relative;
  flex: 0 0 44px;
  transition: background .2s ease, border-color .2s ease;
}

.mt-faq-toggle:before,
.mt-faq-toggle:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #005294;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.mt-faq-toggle:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* answer */
.mt-faq-a {
  padding: 0 18px 16px 86px;
  font-size: 14px;
  color: #5b6572;
  line-height: 1.85;
}

/* open state */
.mt-faq-item[open] {
  border-color: rgba(214, 13, 69, 0.22);
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.11);
}

.mt-faq-item[open]:before {
  opacity: 1;
}

.mt-faq-item[open] .mt-faq-num {
  color: #d60d45;
  border-color: rgba(214, 13, 69, 0.22);
}

.mt-faq-item[open] .mt-faq-toggle {
  background: rgba(214, 13, 69, 0.10);
  border-color: rgba(214, 13, 69, 0.18);
}

.mt-faq-item[open] .mt-faq-toggle:before,
.mt-faq-item[open] .mt-faq-toggle:after {
  background: #d60d45;
}

.mt-faq-item[open] .mt-faq-toggle:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* gallery */
.mt-gs {
  padding: 40px 0;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(0, 82, 148, 0.10), transparent 58%),
    radial-gradient(900px 420px at 88% 0%, rgba(214, 13, 69, 0.10), transparent 58%),
    #fff;
}

.mt-gs-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 22px;
}

.mt-gs-kicker {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  color: var(--blue);
  border: 1px solid rgba(0, 82, 148, .22);
  background: rgba(0, 82, 148, .06);
}

.mt-gs-title {
  margin: 10px 0 8px;
  font-size: 34px;
  font-weight: 950;
  color: #0f1217;
}

.mt-gs-sub {
  margin: 0;
  font-size: 15px;
  color: #5b6572;
  line-height: 1.7;
}

.mt-gs-underline {
  width: 74px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #005294, #d60d45);
  opacity: .85;
}

.mt-gs-shell {
  position: relative;
  margin-top: 18px;
}

/* Track */
.mt-gs-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 6px 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mt-gs-track::-webkit-scrollbar {
  display: none;
}

.mt-gs-card {
  flex: 0 0 auto;
  width: 280px;
  height: 250px;
  border-radius: 14px;
  /* not too round */
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(16, 19, 24, 0.10);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  background: #fff;
  text-decoration: none;
  position: relative;
}

.mt-gs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.mt-gs-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity .25s ease;
}

.mt-gs-card:hover img {
  transform: scale(1.07);
}

.mt-gs-card:hover:after {
  opacity: 1;
}

/* Arrows */
.mt-gs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0, 82, 148, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #005294;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.mt-gs-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(214, 13, 69, 0.22);
  color: #d60d45;
}

.mt-gs-arrow.left {
  left: -6px;
}

.mt-gs-arrow.right {
  right: -6px;
}

/* Lightbox */
.mt-gs-lb {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.mt-gs-lb.is-open {
  display: block;
}

.mt-gs-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.74);
}

.mt-gs-lb-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  overflow: hidden;
  background: #0f1217;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.mt-gs-lb-img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  background: #0f1217;
}

.mt-gs-lb-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

/* blogs */
.mt-blog2 {
  padding: 50px 0;
  background: #fff;
}

/* Head Row */
.mt-blog2-headRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 22px;
}

.mt-blog2-headText {
  max-width: 760px;
}

.mt-blog2-kicker {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  color: var(--blue);
  border: 1px solid rgba(0, 82, 148, .22);
  background: rgba(0, 82, 148, .06);
}

.mt-blog2-title {
  margin: 10px 0 8px;
  font-size: 34px;
  font-weight: 950;
  color: #0f1217;
  line-height: 1.18;
}

.mt-blog2-sub {
  margin: 0;
  font-size: 15px;
  color: #5b6572;
  line-height: 1.75;
}

.mt-blog2-allBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  color: #fff;
  background: #005294;
  box-shadow: 0 18px 38px rgba(0, 82, 148, 0.18);
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}

.mt-blog2-allBtn:hover {
  background: #d60d45;
  transform: translateY(-2px);
}

/* Layout */
.mt-blog2-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

/* FEATURED */
.mt-blog2-feature {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 24, 0.10);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.10);
  background: #fff;
}

.mt-blog2-featureLink {
  display: grid;
  grid-template-rows: 270px auto;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.mt-blog2-img {
  overflow: hidden;
}

.mt-blog2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.mt-blog2-feature:hover .mt-blog2-img img {
  transform: scale(1.06);
}

.mt-blog2-body {
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(0, 82, 148, 0.06), rgba(214, 13, 69, 0.04)),
    #fff;
}

.mt-blog2-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.mt-blog2-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #d60d45;
  background: rgba(214, 13, 69, 0.10);
  border: 1px solid rgba(214, 13, 69, 0.16);
}

.mt-blog2-chip.blue {
  color: #005294;
  background: rgba(0, 82, 148, 0.10);
  border-color: rgba(0, 82, 148, 0.16);
}

.mt-blog2-time {
  font-size: 12.5px;
  color: #5c6571;
  font-weight: 900;
}

.mt-blog2-h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  font-weight: 950;
  color: #0f1217;
  line-height: 1.28;
}

.mt-blog2-p {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: #5b6572;
  line-height: 1.7;
}

.mt-blog2-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 82, 148, 0.14);
  font-weight: 950;
  color: #005294;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.mt-blog2-feature:hover .mt-blog2-cta {
  transform: translateY(-2px);
  border-color: rgba(214, 13, 69, 0.20);
  color: #d60d45;
}

/* RIGHT LIST */
.mt-blog2-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mt-blog2-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 24, 0.10);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.mt-blog2-cardLink {
  display: grid;
  grid-template-columns: 148px 1fr;
  text-decoration: none;
  color: inherit;
  min-height: 128px;
}

.mt-blog2-thumb {
  width: 150px;
  /* desktop fixed width */
  min-width: 150px;
  height: 120px;
  /* fixed height */
  overflow: hidden;
  border-radius: 12px;
  background: #f2f4f7;
}

.mt-blog2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.mt-blog2-card:hover .mt-blog2-thumb img {
  transform: scale(1.06);
}

.mt-blog2-cardBody {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mt-blog2-h4 {
  margin: 10px 0 10px;
  font-size: 15px;
  font-weight: 950;
  color: #0f1217;
  line-height: 1.3;
}

.mt-blog2-miniCta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 950;
  color: #005294;
  transition: color .2s ease, transform .2s ease;
}

.mt-blog2-card:hover .mt-blog2-miniCta {
  color: #d60d45;
  transform: translateX(2px);
}

/* footer */
.mtf {
  color: #eaf1ff;
  background:
    radial-gradient(950px 460px at 8% 0%, rgba(214, 13, 69, 0.24), transparent 55%),
    radial-gradient(950px 460px at 92% 0%, rgba(0, 82, 148, 0.32), transparent 55%),
    linear-gradient(180deg, #061425, #040c16);
}

/* Top accent strip */
.mtf-topbar {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.mtf-topbar-in {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #005294, #d60d45, #005294);
  opacity: .85;
}

/* Main */
.mtf-main {
  padding: 62px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mtf-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.1fr;
  gap: 22px;
}

/* Logo image */
.mtf-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 12px;
}

.mtf-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

/* Brand text */
.mtf-desc {
  margin: 0 0 14px;
  font-size: 13.8px;
  line-height: 1.75;
  color: rgba(234, 241, 255, 0.84);
  max-width: 520px;
}

.mtf-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.mtf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(234, 241, 255, 0.95);
}

/* Social */
.mtf-social {
  display: flex;
  gap: 10px;
}

.mtf-soc {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.mtf-soc:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(214, 13, 69, 0.30);
}

/* Columns */
.mtf-h {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 950;
  color: #fff;
}

.mtf-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mtf-links a {
  color: rgba(234, 241, 255, 0.82);
  text-decoration: none;
  font-weight: 850;
  font-size: 13.5px;
  transition: color .2s ease, transform .2s ease;
}

.mtf-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

/* Booking box */
.mtf-bookBox {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.25);
  padding: 16px;
}

.mtf-bookTop {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.mtf-bookIcon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 82, 148, 0.55), rgba(214, 13, 69, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mtf-bookText strong {
  display: block;
  font-weight: 950;
  color: #fff;
}

.mtf-bookText span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(234, 241, 255, 0.78);
}

.mtf-bookLines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.mtf-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mtf-line .ic {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  flex: 0 0 40px;
}

.mtf-line .txt strong {
  display: block;
  font-size: 13px;
  font-weight: 950;
  color: #fff;
  margin-bottom: 2px;
}

.mtf-line .txt a,
.mtf-line .txt span {
  display: block;
  font-size: 13.5px;
  font-weight: 850;
  color: rgba(234, 241, 255, 0.82);
  text-decoration: none;
}

.mtf-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mtf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 950;
  font-size: 13.5px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.mtf-btn.wa {
  background: #d60d45;
  color: #fff;
  box-shadow: 0 18px 38px rgba(214, 13, 69, 0.20);
}

.mtf-btn.wa:hover {
  transform: translateY(-2px);
  background: #b80a3b;
}

.mtf-btn.call {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.mtf-btn.call:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 82, 148, 0.35);
  background: rgba(255, 255, 255, 0.10);
}

/* Bottom */
.mtf-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.12);
}

.mtf-bottomGrid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.mtf-copy {
  margin: 0;
  font-size: 13px;
  font-weight: 850;
  color: rgba(234, 241, 255, 0.78);
}

.mtf-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mtf-legal a {
  color: rgba(234, 241, 255, 0.78);
  text-decoration: none;
  font-weight: 850;
  font-size: 13px;
}

.mtf-legal a:hover {
  color: #fff;
}

.mtf-legal .dot {
  opacity: .5;
}

/* itinerary */
#hero-it {
  min-height: 70vh;
}

/* SOFT OVERLAY SHADOW */
#hero-it::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.22) 45%,
      rgba(0, 0, 0, 0.28) 100%);
  z-index: 1;
}

/* ========= ITINERARY HERO CONTENT (SIMPLE) ========= */
.itHeroX {
  position: relative;
  z-index: 2;
  /* above slider */
  padding: 70px 0 52px;
  /* fits under header */
}

.itHeroX-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
  /* looks more premium for itinerary pages */
}

/* Breadcrumb */
.itHeroX-bc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 14px;
}

.itHeroX-bc a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.itHeroX-bc a:hover {
  text-decoration: underline;
}

.itHeroX-bc .current {
  color: #fff;
  font-weight: 800;
}

/* Title */
.itHeroX-title {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  position: relative;
}

/* small theme underline */
.itHeroX-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--mt-pink), var(--mt-blue));
  opacity: .95;
}

/* Sub */
.itHeroX-sub {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  max-width: 760px;
}

/* Meta row */
.itHeroX-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.itHeroX-meta .m {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 12px;
  border-radius: 999px;
}

.itHeroX-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

/* main itnerary */

/* =========================
   ITINERARY BODY CSS ONLY
   (for the HTML you shared)
   Theme vars required:
   --mt-pink, --mt-blue, --mt-text-light, --mt-muted, --mt-body-bg
========================= */

.it-wrap {
  padding: 18px 0 56px;
  background: var(--mt-body-bg);
}

.it-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: start;
}

/* ===== Sticky mini nav ===== */
.it-nav {
  position: sticky;
  top: 12px;
  z-index: 10;
  background: rgba(245, 246, 251, .75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 18px rgba(11, 18, 32, .06);
  margin-bottom: 14px;
}

.it-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.it-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink2);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .7);
  transition: .15s ease;
}

.it-nav a i {
  opacity: .85
}

.it-nav a:hover {
  transform: translateY(-1px)
}

.it-nav a.active {
  background: linear-gradient(135deg, rgba(0, 82, 148, .12), rgba(214, 13, 69, .10));
  border-color: rgba(0, 82, 148, .22);
  color: var(--ink);
}

/* ===== Cards / headings ===== */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r24);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-pad {
  padding: 18px
}

.sec-title {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -.01em;
}

.muted {
  color: rgba(11, 18, 32, .70)
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0
}

/* ===== Overview layout ===== */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ov-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ov-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 82, 148, .06), rgba(214, 13, 69, .05));
  border: 1px solid rgba(11, 18, 32, .08);
}

.ov-point .ic {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, .10);
  box-shadow: 0 10px 22px rgba(11, 18, 32, .08);
  flex: 0 0 auto;
  color: var(--mt-blue);
}

.ov-point strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.ov-point span {
  display: block;
  font-size: 14px;
  color: rgba(11, 18, 32, .72);
  line-height: 1.45;
  margin-top: 2px;
}

/* ===== Highlights pills ===== */
.hl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 2px 0 2px;
}

.hl-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #fff;
  box-shadow: 0 10px 20px rgba(11, 18, 32, .06);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink2);
}

.hl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mt-blue), var(--mt-pink));
  box-shadow: 0 8px 16px rgba(214, 13, 69, .18);
}

/* ===== Itinerary Day Rail ===== */
.day-rail {
  position: relative;
  padding: 18px;
}

.day-rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}


/* day-itnerary */
/* =========================================
   ATTRACTIVE ITINERARY (DAYS / STOPS)
   Theme: --mt-pink, --mt-blue, --mt-body-bg
   Paste AFTER current CSS
========================================= */

.days {
  display: grid;
  gap: 14px;
}

/* DAY CARD */
.day {
  border: 1px solid rgba(11, 18, 32, .10);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(11, 18, 32, .08);
}

/* DAY HEADER */
.day-top {
  display: grid;
  grid-template-columns: 86px 1fr 46px;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  background: linear-gradient(90deg, rgba(0, 82, 148, .06), rgba(214, 13, 69, .05));
  border-bottom: 1px solid rgba(11, 18, 32, .08);
  cursor: pointer;
}

.day-top:hover {
  background: linear-gradient(90deg, rgba(0, 82, 148, .08), rgba(214, 13, 69, .06));
}

/* Day badge */
.day-badge {
  justify-self: start;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, .12);
  color: var(--mt-blue);
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 18px rgba(11, 18, 32, .06);
}

/* Title/subtitle */
.day-title {
  margin: 0;
  font-size: 15.5px;
  font-weight: 900;
  color: rgba(11, 18, 32, .92);
}

.day-sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(11, 18, 32, .62);
  line-height: 1.35;
}

/* Toggle */
.day-toggle {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, .12);
  box-shadow: 0 10px 18px rgba(11, 18, 32, .06);
  color: rgba(11, 18, 32, .70);
  transition: .18s ease;
}

.day.open .day-toggle {
  transform: rotate(180deg);
}

/* BODY */
.day-body {
  padding: 14px;
  background: #fff;
}

/* STOPS LIST */
.stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

/* STOP ROW (time + content) */
.stop {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border: 1px solid rgba(11, 18, 32, .10);
  border-radius: 16px;
  background: rgba(245, 246, 251, .55);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.stop:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 82, 148, .22);
  box-shadow: 0 12px 22px rgba(11, 18, 32, .08);
}

/* TIME PILL */
.time {
  width: max-content;
  padding: 9px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 82, 148, .16);
  color: var(--mt-blue);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .02em;
  box-shadow: 0 8px 16px rgba(11, 18, 32, .06);
}

/* PLACE + NOTE */
.place {
  margin: 0;
  font-size: 14.5px;
  font-weight: 900;
  color: rgba(11, 18, 32, .92);
  line-height: 1.2;
}

.note {
  margin: 5px 0 0;
  font-size: 13px;
  color: rgba(11, 18, 32, .68);
  line-height: 1.55;
}

/* Make the content div not add extra spacing */
.stop>div:last-child {
  min-width: 0;
}

#itinerary .day-body {
  display: none;
}

#itinerary .day.open .day-body {
  display: block;
}



/* CTA strip inside itinerary */
.cta-strip {
  margin-top: 16px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, .10);
  background: linear-gradient(135deg, rgba(214, 13, 69, .10), rgba(0, 82, 148, .10));
  box-shadow: var(--shadow);
}

.cta-strip .inner {
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background:
    radial-gradient(540px 220px at 12% 30%, rgba(0, 82, 148, .14), transparent 60%),
    radial-gradient(540px 220px at 88% 55%, rgba(214, 13, 69, .14), transparent 60%);
}

.cta-strip h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.cta-strip p {
  margin: 4px 0 0;
  color: rgba(11, 18, 32, .72);
  font-size: 13px;
  line-height: 1.45;
}

/* Buttons (used inside CTA strip) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .18s ease;
  user-select: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--mt-pink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(214, 13, 69, .28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.05)
}

.btn-ghost {
  background: rgba(255, 255, 255, .85);
  color: var(--ink2);
  border-color: rgba(11, 18, 32, .12);
}

.btn-ghost:hover {
  transform: translateY(-1px)
}

/* ===== Includes / Excludes ===== */
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.inc-box {
  border-radius: 20px;
  border: 1px solid rgba(11, 18, 32, .10);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(11, 18, 32, .08);
}

.inc-head {
  padding: 12px 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.inc-head.in {
  background: linear-gradient(135deg, rgba(0, 82, 148, .96), rgba(0, 82, 148, .78));
}

.inc-head.ex {
  background: linear-gradient(135deg, rgba(214, 13, 69, .96), rgba(214, 13, 69, .78));
}

.inc-list {
  list-style: none;
  margin: 0;
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
}

.inc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  color: rgba(11, 18, 32, .78);
  line-height: 1.45;
}

.inc-item i {
  margin-top: 2px
}

.inc-item .ok {
  color: #16a34a
}

.inc-item .no {
  color: #ef4444
}

/* ===== FAQ ===== */
.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #fff;
  box-shadow: 0 10px 20px rgba(11, 18, 32, .06);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 82, 148, .10), rgba(214, 13, 69, .08));
  border: 1px solid rgba(0, 82, 148, .14);
  transition: .18s ease;
}

details[open] summary i {
  transform: rotate(180deg)
}

.faq .ans {
  padding: 0 14px 14px;
  color: rgba(11, 18, 32, .75);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Sidebar (Right column) ===== */
.side {
  position: sticky;
  top: 12px;
  display: grid;
  gap: 14px;
}

.enq {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, .10);
  box-shadow: var(--shadow2);
  background: #fff;
}

.enq-top {
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, rgba(0, 82, 148, .98), rgba(0, 82, 148, .86));
  color: #fff;
}

.enq-top h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.enq-top p {
  margin: 6px 0 0;
  opacity: .92;
  font-size: 13px;
  line-height: 1.45;
}

.enq-body {
  padding: 14px 16px 16px
}

.fgrid {
  display: grid;
  gap: 10px
}

.field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(11, 18, 32, .12);
  background: rgba(245, 246, 251, .75);
  border-radius: 14px;
  padding: 10px 12px;
}

.field i {
  color: rgba(11, 18, 32, .55)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink);
}

.field textarea {
  min-height: 92px;
  resize: vertical
}

.enq-btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--mt-pink);
  color: #fff;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(214, 13, 69, .22);
  transition: .18s ease;
}

.enq-btn:hover {
  transform: translateY(-1px)
}

/* Support Card */
.side-card {
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 18, 32, .08);
}

.support {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.support .ic {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 82, 148, .10), rgba(214, 13, 69, .08));
  border: 1px solid rgba(0, 82, 148, .14);
  flex: 0 0 auto;
  color: var(--mt-blue);
}

.support strong {
  display: block;
  font-weight: 900
}

.support span {
  display: block;
  color: rgba(11, 18, 32, .72);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 2px;
}

.support a {
  color: var(--mt-blue);
  font-weight: 900
}

/* ===== Sidebar Tours: Fresh Design (Rail + Stacked Links) ===== */
.sideTourX {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  margin-top: 14px;
}

.sideTourX-head {
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(0, 82, 148, .10), transparent 65%),
    radial-gradient(800px 220px at 20% 0%, rgba(214, 13, 69, .14), transparent 60%),
    #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.sideTourX-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #0b1220;
  letter-spacing: .2px;
}

.sideTourX-pill {
  font-size: 12px;
  font-weight: 800;
  color: var(--mt-blue);
  background: rgba(0, 82, 148, .10);
  border: 1px solid rgba(0, 82, 148, .18);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.sideTourX-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  scrollbar-width: thin;
}

/* item = white card + left rail */
.sideTourX-item {
  display: grid;
  grid-template-columns: 42px 1fr 26px;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  text-decoration: none;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
  min-width: 0;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sideTourX-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mt-pink), var(--mt-blue));
  opacity: .9;
}

.sideTourX-item:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 13, 69, .22);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .10);
}

.sideTourX-no {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--mt-blue), var(--mt-pink));
  box-shadow: 0 10px 18px rgba(0, 82, 148, .18);
}

.sideTourX-name {
  font-size: 14px;
  font-weight: 850;
  color: #0b1220;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-width: 0;
}

.sideTourX-chev {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(214, 13, 69, .10);
  color: var(--mt-pink);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.sideTourX-item:hover .sideTourX-chev {
  background: var(--mt-pink);
  color: #fff;
  transform: translateX(2px);
}

.sideTourX-foot {
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
}

.sideTourX-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--mt-pink), var(--mt-blue));
  box-shadow: 0 14px 22px rgba(214, 13, 69, .16);
}

.sideTourX-btn:hover {
  filter: brightness(1.02);
}

/* prevent horizontal scroll in sidebar */
.side,
.sideTourX {
  overflow-x: hidden;
}



/* table */
/* ===== Taxi Fare Table (Auto-fit columns + swipe on mobile) ===== */

/* If table is inside CSS grid, prevents parent overflow */
.it-grid>* {
  min-width: 0;
}

/* Top row */
.fareTopV3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* Frame */
.fareFrameV3 {
  max-width: 100%;
  border: 1px solid rgba(11, 18, 32, .10);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  /* keeps rounded corners */
}

/* Swipe container */
.fareSwipeV3 {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* scrollbar-gutter: stable; remove both-edges */
}

.fareSwipeV3::-webkit-scrollbar {
  height: 10px
}

.fareSwipeV3::-webkit-scrollbar-thumb {
  background: rgba(11, 18, 32, .18);
  border-radius: 999px
}

.fareSwipeV3::-webkit-scrollbar-track {
  background: rgba(11, 18, 32, .06)
}

/* ✅ Table: content-based column sizing */
.fareTableV3 {
  width: 100%;
  min-width: 100%;
  /* fill the frame when there is room */
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
}

/* Header */
.fareTableV3 thead th {
  padding: 14px 14px;
  text-align: left;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(0, 82, 148, .98), rgba(0, 82, 148, .86));
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  white-space: nowrap;
}

.fareTableV3 thead th:first-child {
  border-top-left-radius: 18px
}

.fareTableV3 thead th:last-child {
  border-top-right-radius: 18px
}

/* Body cells */
.fareTableV3 tbody td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(11, 18, 32, .08);
  vertical-align: middle;
  background: #fff;
}

.fareTableV3 tbody tr:nth-child(odd) td {
  background: rgba(245, 246, 251, .65)
}

.fareTableV3 tbody tr:last-child td {
  border-bottom: 0
}

/* ✅ Column behavior */
.fareTableV3 td:nth-child(1) {
  white-space: normal;
}

/* Taxi type can grow */
.fareTableV3 td:nth-child(2) {
  /* white-space: nowrap; */
}

/* Seating compact */
.fareTableV3 td:nth-child(3) {
  /* white-space: nowrap; */
}

/* Fare compact */
.fareTableV3 td:nth-child(4) {
  /* white-space: nowrap; */
}

/* Enquiry compact */

/* Taxi type cell */
.ftypeV3 {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.ficoV3 {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(214, 13, 69, .10), rgba(0, 82, 148, .10));
  border: 1px solid rgba(0, 82, 148, .14);
  color: var(--mt-blue);
  flex: 0 0 auto;
}

.fnameV3 {
  font-weight: 900;
  color: var(--ink)
}

.fmetaV3 {
  font-size: 12.5px;
  color: rgba(11, 18, 32, .62);
  margin-top: 2px
}

/* Seating */
.seatV3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .12);
  background: #fff;
  font-weight: 900;
  font-size: 12px;
  color: var(--ink2);
  white-space: nowrap;
}

.seatV3 i {
  color: var(--mt-blue)
}

/* Fare */
.priceV3 {
  font-weight: 900;
  color: var(--mt-pink);
  white-space: nowrap
}

/* ✅ Enquiry button should NOT create empty width */
.actsV3 {
  display: inline-flex;
  /* ✅ shrink to content */
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.btnV3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: .18s ease;
}

.btnV3:hover {
  transform: translateY(-1px)
}

.enqV3 {
  background: rgba(214, 13, 69, .10);
  border-color: rgba(214, 13, 69, .35);
  color: var(--mt-pink);
}

.waV3 {
  background: rgba(0, 82, 148, .08);
  border-color: rgba(0, 82, 148, .28);
  color: var(--mt-blue);
}

/* Notes */
.fareNoteV3 {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(11, 18, 32, .72);
}

.nV3 {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.nV3 i {
  margin-top: 2px;
  color: var(--mt-blue)
}

/* ===== Gallery Slider (unique, not like reference) ===== */
.gsl-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.gsl-title {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.gsl-ic {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 82, 148, .10), rgba(214, 13, 69, .10));
  border: 1px solid rgba(11, 18, 32, .10);
  color: var(--mt-blue);
  box-shadow: 0 12px 26px rgba(11, 18, 32, .08);
  flex: 0 0 auto;
}

.gsl-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.gsl-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(11, 18, 32, .74);
  background: linear-gradient(135deg, rgba(0, 82, 148, .06), rgba(214, 13, 69, .05));
  border: 1px solid rgba(11, 18, 32, .10);
}

.gsl-pill i {
  color: var(--mt-blue)
}

/* Main area */
.gsl-main {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 12px;
  align-items: center;
}

.gsl-figure {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #0b2f4f;
  box-shadow: 0 18px 40px rgba(11, 18, 32, .12);
}

.gsl-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.gsl-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 280px at 18% 12%, rgba(255, 255, 255, .16), transparent 60%),
    linear-gradient(to top, rgba(11, 18, 32, .48), rgba(11, 18, 32, 0) 60%);
  pointer-events: none;
}


.gsl-capDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mt-blue), var(--mt-pink));
  box-shadow: 0 10px 18px rgba(214, 13, 69, .22);
}

/* Progress bar */
.gsl-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 2;
  background: rgba(255, 255, 255, .10);
}

.gsl-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--mt-blue), var(--mt-pink));
}

/* Nav buttons */
.gsl-nav {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(11, 18, 32, .10);
  transition: .16s ease;
}

.gsl-nav i {
  color: var(--mt-blue)
}

.gsl-nav:hover {
  transform: translateY(-1px)
}

.gsl-nav:active {
  transform: translateY(0px)
}

/* Thumbs row */
.gsl-thumbs {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
}

.gsl-thumbs::-webkit-scrollbar {
  height: 8px
}

.gsl-thumbs::-webkit-scrollbar-thumb {
  background: rgba(11, 18, 32, .18);
  border-radius: 999px
}

.gsl-thumbs::-webkit-scrollbar-track {
  background: rgba(11, 18, 32, .06)
}

.gsl-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 120px;
  height: 74px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #fff;
  cursor: pointer;
  transition: .16s ease;
}

.gsl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.gsl-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, .36), rgba(11, 18, 32, 0) 70%);
  opacity: .9;
}

.gsl-thumb b {
  position: absolute;
  left: 8px;
  bottom: 7px;
  z-index: 2;
  font-size: 11px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .01em;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(8px);
}

.gsl-thumb.active {
  border-color: rgba(0, 82, 148, .35);
  box-shadow: 0 16px 30px rgba(0, 82, 148, .18);
  transform: translateY(-1px);
}



/* ===== Single Image Only ===== */
.singleImgWrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #0b2f4f;
  box-shadow: 0 18px 40px rgba(11, 18, 32, .12);
}


.singleImgWrap img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* subtle overlay for depth */
.singleImgWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.singleImgSec {
  margin-bottom: 18px;
}




/* ===== Taxi Features (Premium Cards) ===== */
.tfGrid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tfCard {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(500px 220px at 20% 10%, rgba(0, 82, 148, .10), transparent 60%),
    radial-gradient(520px 220px at 90% 40%, rgba(214, 13, 69, .08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(245, 246, 251, .92));
  box-shadow: 0 14px 34px rgba(11, 18, 32, .08);
  padding: 16px 16px 14px;
  overflow: hidden;
  transition: .16s ease;
}

.tfCard::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 82, 148, .18), rgba(214, 13, 69, .14));
  opacity: .0;
  pointer-events: none;
  transition: .16s ease;
}

.tfCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11, 18, 32, .12);
}

.tfCard:hover::after {
  opacity: 1
}

.tfTop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tfIcon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(11, 18, 32, .12);
  box-shadow: 0 12px 26px rgba(11, 18, 32, .08);
  color: var(--mt-blue);
  position: relative;
}

.tfIcon::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 82, 148, .22), rgba(214, 13, 69, .16));
  opacity: .35;
  z-index: -1;
}

.tfTitle {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--ink);
}

.tfDesc {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(11, 18, 32, .74);
}



/* ===== Why Book Taxi From Us (Different Layout) ===== */
.wbX {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items: stretch;
}

/* Left panel */
.wbX-main {
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(720px 320px at 18% 10%, rgba(0, 82, 148, .12), transparent 60%),
    radial-gradient(720px 320px at 95% 35%, rgba(214, 13, 69, .10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(245, 246, 251, .92));
  box-shadow: 0 16px 38px rgba(11, 18, 32, .10);
  padding: 18px;
  overflow: hidden;
}

.wbX-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(11, 18, 32, .72);
  background: rgba(255, 255, 255, .80);
  border: 1px solid rgba(11, 18, 32, .10);
}

.wbX-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mt-blue), var(--mt-pink));
  box-shadow: 0 10px 18px rgba(214, 13, 69, .22);
}

.wbX-title {
  margin: 10px 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}

.wbX-sub {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(11, 18, 32, .74);
}

.wbX-metrics {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.wbX-m {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 24px rgba(11, 18, 32, .06);
}

.wbX-mv {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(0, 82, 148, .12), rgba(214, 13, 69, .10));
  border: 1px solid rgba(0, 82, 148, .18);
  color: var(--mt-blue);
}

.wbX-m b {
  display: block;
  font-weight: 900;
  font-size: 14px;
  color: var(--ink)
}

.wbX-m span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: rgba(11, 18, 32, .72);
  line-height: 1.4
}

.wbX-note {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: linear-gradient(135deg, rgba(0, 82, 148, .07), rgba(214, 13, 69, .06));
  color: rgba(11, 18, 32, .76);
  font-size: 13px;
  font-weight: 800;
}

.wbX-note i {
  color: var(--mt-blue);
  margin-top: 2px
}

/* Right strips */
.wbX-strips {
  display: grid;
  gap: 10px;
}

.wbX-strip {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #fff;
  box-shadow: 0 12px 26px rgba(11, 18, 32, .08);
  overflow: hidden;
}

.wbX-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--mt-blue), var(--mt-pink));
  opacity: .9;
}

.wbX-ic {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(245, 246, 251, .95);
  border: 1px solid rgba(11, 18, 32, .10);
  color: var(--mt-blue);
  box-shadow: 0 12px 26px rgba(11, 18, 32, .06);
}

.wbX-txt h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--ink);
}

.wbX-txt p {
  margin: 4px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(11, 18, 32, .72);
}

.wbX-badge {
  margin-left: auto;
  align-self: flex-start;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(11, 18, 32, .70);
  background: linear-gradient(135deg, rgba(0, 82, 148, .08), rgba(214, 13, 69, .06));
  border: 1px solid rgba(11, 18, 32, .10);
  white-space: nowrap;
}



/* ===== Compact Icon Routes ===== */
.route-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  /* compact spacing */
}

.route-mini a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  color: rgba(11, 18, 32, .80);
  line-height: 1.2;
  transition: .15s ease;
  white-space: nowrap;
}

.route-mini i {
  color: var(--mt-blue);
  font-size: 14px;
}

.route-mini span {
  font-weight: 700;
  font-size: 12px;
  opacity: .55;
}

/* hover subtle */
.route-mini a:hover {
  background: linear-gradient(135deg,
      rgba(0, 82, 148, .06),
      rgba(214, 13, 69, .05));
  transform: translateY(-1px);
}



/* ===== HOTEL OVERVIEW ===== */
#hotel-overview {
  overflow: visible;
}

.ho-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ho-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, .70);
}

.ho-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mt-blue), var(--mt-pink));
  box-shadow: 0 10px 18px rgba(11, 18, 32, .10);
}

.ho-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ho-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11, 18, 32, .78);
  border: 1px solid rgba(11, 18, 32, .10);
  background: linear-gradient(135deg, rgba(0, 82, 148, .06), rgba(214, 13, 69, .05));
}

.ho-badge i {
  color: var(--mt-blue);
}

/* Grid */
.ho-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 14px;
  align-items: stretch;
}

/* Points */
.ho-points {
  display: grid;
  gap: 10px;
}

.ho-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(520px 220px at 18% 10%, rgba(0, 82, 148, .10), transparent 60%),
    radial-gradient(520px 220px at 92% 40%, rgba(214, 13, 69, .08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 246, 251, .92));
  box-shadow: 0 12px 26px rgba(11, 18, 32, .07);
}

.ho-ic {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, .12);
  box-shadow: 0 10px 22px rgba(11, 18, 32, .08);
  color: var(--mt-blue);
}

.ho-point b {
  display: block;
  font-weight: 900;
  font-size: 14px;
  margin: 0;
}

.ho-point p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(11, 18, 32, .70);
}

/* Plan card */
.ho-plan {
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: linear-gradient(135deg, rgba(0, 82, 148, .08), rgba(214, 13, 69, .06));
  box-shadow: 0 14px 34px rgba(11, 18, 32, .10);
  padding: 14px;
}

.ho-plan-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(11, 18, 32, .10);
}

.ho-plan-ic {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 82, 148, .10), rgba(214, 13, 69, .08));
  border: 1px solid rgba(0, 82, 148, .18);
  color: var(--mt-blue);
  flex: 0 0 auto;
}

.ho-plan-title {
  font-weight: 900;
  font-size: 14px;
}

.ho-plan-sub {
  margin-top: 2px;
  font-size: 12.5px;
  color: rgba(11, 18, 32, .68);
  font-weight: 800;
}

.ho-plan-rows {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.ho-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(11, 18, 32, .10);
}

.ho-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: var(--mt-blue);
  border: 1px solid rgba(0, 82, 148, .22);
  background: rgba(0, 82, 148, .06);
}

.ho-row-txt {
  font-size: 13px;
  color: rgba(11, 18, 32, .76);
  line-height: 1.5;
  font-weight: 700;
}

.ho-mini-note {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(11, 18, 32, .10);
  color: rgba(11, 18, 32, .72);
  font-size: 13px;
  line-height: 1.55;
}

.ho-mini-note i {
  margin-top: 2px;
  color: var(--mt-blue);
}



/* ===== ACCOMMODATION AMENITIES (CLEAN VERSION) ===== */
.amSecX {
  background: #fff
}

.amHeadX {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.amKickerX {
  font-size: 12px;
  letter-spacing: .12em;
  color: #6b7280;
  font-weight: 800;
}

.amTitleX {
  margin: 0;
  font-size: 22px
}

.amSubX {
  margin: 0;
  color: rgba(11, 18, 32, .7)
}

.amBadgeX {
  align-self: flex-start;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  color: #0b4ea2;
  background: linear-gradient(135deg, rgba(0, 82, 148, .10), rgba(214, 13, 69, .08));
  border: 1px solid rgba(11, 18, 32, .10);
}

/* grid */
.amWrapX.no-rail {
  padding: 10px
}

.amGridX {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* cards */
.amCardX {
  border: 1px solid rgba(11, 18, 32, .10);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(520px 220px at 18% 10%, rgba(0, 82, 148, .10), transparent 60%),
    radial-gradient(520px 220px at 92% 35%, rgba(214, 13, 69, .08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 246, 251, .90));
  box-shadow: 0 12px 26px rgba(11, 18, 32, .08);
  transition: .18s ease;
  text-align: left;
}

.amCardX:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 18, 32, .12);
  border-color: rgba(0, 82, 148, .22);
}

/* icon + heading row */
.amIconX {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, .12);
  color: var(--mt-blue);
  box-shadow: 0 10px 20px rgba(11, 18, 32, .08);
  margin: 0;
  /* remove bottom spacing */
  flex: 0 0 auto;
}

.amCardX h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
}

.amCardX p {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(11, 18, 32, .70);
  line-height: 1.5;
}

/* create the top row (icon + title) automatically */
.amCardX {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 0;
  align-items: start;
}

.amCardX .amIconX {
  grid-column: 1;
  grid-row: 1;
}

.amCardX h4 {
  grid-column: 2;
  grid-row: 1;
  padding-top: 4px;
}

.amCardX p {
  grid-column: 1 / -1;
  grid-row: 2;
}

/* ===== ROOMS PRO (compact premium, no empty gaps) ===== */
/* ===== ROOMS PRO (price on image, image visible) ===== */
.roomPro {
  margin-bottom: 14px;
}

.roomPro-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.roomPro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(11, 18, 32, .55);
}

.roomPro-kicker i {
  color: var(--mt-blue)
}

.roomPro-title {
  margin: 6px 0 0;
  font-size: 24px;
  letter-spacing: -.02em
}

.roomPro-sub {
  margin: 8px 0 0;
  color: rgba(11, 18, 32, .70);
  line-height: 1.6
}

.roomPro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: linear-gradient(135deg, rgba(0, 82, 148, .08), rgba(214, 13, 69, .06));
  font-weight: 900;
  color: rgba(11, 18, 32, .76);
}

.roomPro-badge i {
  color: var(--mt-blue)
}

/* grid */
.roomPro-grid {
  display: grid;
  gap: 12px
}

/* card */
.roomPro-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(900px 340px at 12% 0%, rgba(0, 82, 148, .08), transparent 62%),
    radial-gradient(900px 340px at 95% 40%, rgba(214, 13, 69, .07), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 246, 251, .92));
  box-shadow: 0 16px 38px rgba(11, 18, 32, .08);
  align-items: stretch;
}

.roomPro-card:hover {
  border-color: rgba(0, 82, 148, .22)
}

/* image */
.roomPro-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, .10);
  height: 210px;
  background: #0b2f4f;
}

.roomPro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* LIGHT OVERLAY so image stays visible */
.roomPro-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, .05));
}

.roomPro-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 9px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  font-size: 12.5px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.roomPro-rate {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 900;
  font-size: 12.5px;
  z-index: 3;
}

.roomPro-rate .stars {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px
}

/* ===== PRICE TEXT ON IMAGE (NO BOX AT ALL) ===== */
.roomPro-priceOverlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  text-align: right;
  color: #fff;
}

/* "From" */
.roomPro-priceOverlay .from {
  display: block;
  font-size: 11px;
  font-weight: 700;
  opacity: .9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .55);
}

/* price row */
.roomPro-priceOverlay .price {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 3px;
  line-height: 1;
}

/* ₹ */
.roomPro-priceOverlay .cur {
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-2px);
  text-shadow: 0 2px 6px rgba(0, 0, 0, .65);
}

/* amount */
.roomPro-priceOverlay .amt {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.02em;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .7);
}

/* note */
.roomPro-priceOverlay .note {
  display: block;
  font-size: 11px;
  font-weight: 700;
  opacity: .9;
  margin-top: 2px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .6);
}

/* body */
.roomPro-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roomPro-topline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.roomPro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-weight: 900;
  font-size: 13px;
  color: rgba(11, 18, 32, .78);
}

.roomPro-points .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(135deg, var(--mt-blue), var(--mt-pink));
  margin-right: 6px;
}

.roomPro-points .sep {
  opacity: .55
}

/* amenities */
.roomPro-amen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.roomPro-amen .amen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .90);
  font-weight: 900;
  font-size: 12.5px;
  color: rgba(11, 18, 32, .78);
}

.roomPro-amen .amen i {
  color: var(--mt-blue)
}

/* actions */
.roomPro-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.rbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: .18s ease;
}

.rbtn:hover {
  transform: translateY(-1px)
}

.rbtn-primary {
  background: linear-gradient(135deg, #005294, #d60d45);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.rbtn-wa {
  background: #ecf5fb;
  color: #005294;
  border: 1px solid #00529469;
}

.rbtn-wa:hover {
  transform: translateY(-1px)
}

.roomPro-desc {
  color: rgba(11, 18, 32, .72);
  font-size: 13.5px;
}



/* =======================
   POPUP THEME (Vrindavan Cabs )
======================== */

/* Overlay */
.mt-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .70);
  display: none;
  /* show via JS */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 16px;
}

/* Popup box */
.mt-popup-box {
  width: min(520px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  background: linear-gradient(135deg, #d60d45 0%, #005294 70%, #0f1217 100%);
  border-radius: 18px;
  padding: 26px 26px 20px;
  color: #fff;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .08);
}

/* Close button */
.mt-popup-close {
  position: sticky;
  /* keeps it visible while scrolling inside */
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;
  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  float: right;
}

.mt-popup-close:hover {
  background: rgba(255, 255, 255, .10);
}

/* Header */
.mt-popup-head {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 18px;
}

.mt-popup-pill {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .10);
}

.mt-popup-title {
  font-size: 30px;
  line-height: 1.1;
  margin: 10px 0 6px;
}

.mt-popup-sub {
  font-size: 14px;
  opacity: .88;
  margin: 0;
}

/* Form grid (2-col on desktop, 1-col on mobile) */
.mt-popup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Field */
.mt-field {
  display: grid;
  gap: 6px;
}

.mt-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
  opacity: .92;
}

/* Controls */
.mt-popup-form input,
.mt-popup-form select,
.mt-popup-form textarea {
  width: 100% !important;
  display: block;
  box-sizing: border-box;

  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .96);
  color: #111;

  font-size: 14px;
  outline: none;
}

.mt-popup-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.35;
}

/* Full width row */
.mt-field-full {
  grid-column: 1 / -1;
}

/* Focus */
.mt-popup-form input:focus,
.mt-popup-form select:focus,
.mt-popup-form textarea:focus {
  border-color: rgba(249, 115, 22, .70);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}

/* Readonly look */
.mt-popup-form input[readonly] {
  opacity: .95;
  cursor: not-allowed;
}

/* Button */
.mt-popup-btn {
  grid-column: 1 / -1;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;

  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #e11d48 0%, #f97316 100%);
  transition: .25s;
}

.mt-popup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(249, 115, 22, .35);
}

/* Note */
.mt-popup-note {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-size: 12px;
  opacity: .75;
  text-align: center;
}

/* Optional: prevent body scroll when open */
.mt-no-scroll {
  overflow: hidden;
}

/* CAPTCHA */
.mt-captcha-row {
  display: grid;
  grid-template-columns: 120px 44px 1fr;
  gap: 10px;
  align-items: center;
}

.mt-captcha-code {
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 16px;
  color: #111;
  background: rgba(255, 255, 255, .96);
  border: 1px dashed rgba(0, 0, 0, .25);
  user-select: none;
}

.mt-captcha-refresh {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.mt-captcha-refresh:hover {
  background: rgba(255, 255, 255, .12);
}

.mt-captcha-input {
  height: 44px;
}

.mt-captcha-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: .78;
}


/* temples */

/* Grid */
.mt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 20px;
}

/* Card */
.mt-card {
  background: #ffffff;
  border: 1px solid rgba(2, 6, 23, .10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(2, 6, 23, .06);
  display: flex;
  flex-direction: column;
  transition: .2s ease;
}

.mt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(11, 94, 168, .12);
}

/* Top strip */
.mt-strip {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e11d48, #7c3aed, #0b5ea8);
  margin-bottom: 14px;
}

/* Header */
.mt-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.mt-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
}

.mt-sub {
  font-size: 13.5px;
  color: #64748b;
  margin-top: 6px;
}

/* Image */
.mt-thumb {
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin: 12px 0;
  border: 1px solid rgba(2, 6, 23, .08);
}

.mt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Button */
.mt-btn {
  margin-top: auto;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b5ea8, #e11d48);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(11, 94, 168, .18);
}

.mt-btn:hover {
  filter: brightness(1.05);
}
.tc-wrap{
      max-width: 900px;
      margin: 40px auto;
      background:#fff;
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 14px 40px rgba(16,24,40,.08);
    }
    .tc-wrap h1{
      font-size: 28px;
      margin-bottom: 8px;
    }
    .tc-wrap .updated{
      font-size: 13px;
      color:#667085;
      margin-bottom: 24px;
    }
    .tc-wrap h2{
      font-size: 18px;
      margin-top: 26px;
      margin-bottom: 8px;
    }
    .tc-wrap p{
      margin: 6px 0;
      color:#344054;
    }
    .tc-wrap ul{
      padding-left: 18px;
      margin: 8px 0;
    }
    .tc-wrap li{
      margin-bottom: 6px;
    }

    .pp-wrap{
      max-width: 900px;
      margin: 40px auto;
      background:#fff;
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 14px 40px rgba(16,24,40,.08);
    }
    .pp-wrap h1{
      font-size: 28px;
      margin-bottom: 8px;
    }
    .pp-wrap .updated{
      font-size: 13px;
      color:#667085;
      margin-bottom: 24px;
    }
    .pp-wrap h2{
      font-size: 18px;
      margin-top: 26px;
      margin-bottom: 8px;
    }
    .pp-wrap p{
      margin: 6px 0;
      color:#344054;
    }
    .pp-wrap ul{
      padding-left: 18px;
      margin: 8px 0;
    }
    .pp-wrap li{
      margin-bottom: 6px;
    }