:root {
  --primary: #5B2C83;
  --secondary: #C8A951;
  --accent: #1C4E80;
  --bg: #FAF8F4;
  --text: #2B2B2B;

  --card: #fff;
  --stroke: rgba(43, 43, 43, .10);
  --shadow: 0 18px 55px rgba(28, 10, 40, .14);
  --shadow2: 0 10px 25px rgba(28, 10, 40, .10);
  --radius: 22px;

  --max: 1220px;
  --gutter: clamp(16px, 4vw, 28px);
}

/* disable user access */
body{
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
input, textarea{
  user-select:text; /* forms still work */
}
/*  */

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit
}

html,
body {
  overflow-x: hidden;
}

/* ────────────────────────────────────────────────
   HEADER (transparent → sticky with gradient)
───────────────────────────────────────────────── */
.vhH {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vhH.is-sticky {
  background: radial-gradient(900px 260px at 18% 0%, rgba(200, 169, 81, 0.14), transparent 60%), radial-gradient(900px 260px at 82% 0%, rgba(91, 44, 131, 0.18), transparent 62%), rgba(18, 16, 28, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

.vhH__wrap {
  width: min(var(--max), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vhH__brand {
  display: flex;
  align-items: center;
  min-width: 220px;
}

.vhH__logo {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.vhH__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.vhH__link {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 10px 2px;
  transition: color 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.vhH__link:hover {
  color: white;
}

.vhH__link::after {
  content: "";
  position: absolute;
  inset-inline: 0 auto;
  bottom: 6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), rgba(200, 169, 81, 0.55));
  box-shadow: 0 10px 18px rgba(200, 169, 81, 0.16);
  transition: width 0.22s ease;
}

.vhH__link:hover::after,
.vhH__link.is-active::after {
  width: 100%;
}

.vhH__burger {
  display: none;
  /* shown in your mobile media query */
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  padding: 0;
  z-index: 9999;
}

/* Center lines */
.vhH__burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: all .25s ease;
}

.vhH__burger span::before,
.vhH__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s ease;
}

.vhH__burger span::before {
  top: -7px;
}

.vhH__burger span::after {
  top: 7px;
}

.vhH__nav.is-open~.vhH__burger span {
  background: transparent;
}

.vhH__nav.is-open~.vhH__burger span::before {
  top: 0;
  transform: rotate(45deg);
}

.vhH__nav.is-open~.vhH__burger span::after {
  top: 0;
  transform: rotate(-45deg);
}


/* ────────────────────────────────────────────────
   MEGA DROPDOWN – base styles
───────────────────────────────────────────────── */
.vhDD {
  position: relative;
}

.vhDD__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.vhDD__chev {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.92);
  transition: transform 0.18s ease;
}

.vhDD__panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(12px);
  width: min(860px, calc(100vw - 36px));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(900px 260px at 18% 0%, rgba(200, 169, 81, 0.18), transparent 60%),
    radial-gradient(900px 260px at 82% 0%, rgba(91, 44, 131, 0.22), transparent 62%),
    rgba(18, 16, 28, 0.96);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  filter: blur(2px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease;
  z-index: 9999;
}

.vhDD__panel--mini {
  width: 280px;
  left: 0;
  transform: translateX(0) translateY(12px);
  padding: 12px;
}

.vhDD__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .vhDD__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .vhDD__grid {
    grid-template-columns: 1fr;
  }
}

.vhDD__col {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.vhDD__title {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 950;
  letter-spacing: 0.2px;
  font-size: 13px;
  margin: 0 0 10px;
}

.vhDD__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.vhDD__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  color: white;
}

.vhDD__footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vhDD__note {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 12.5px;
}

.vhDD__note a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px dashed rgba(200, 169, 81, 0.55);
}

.vhDD__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  color: #15120A;
  background: linear-gradient(90deg, var(--secondary), rgba(255, 214, 120, 0.95));
  box-shadow: 0 14px 30px rgba(200, 169, 81, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* ────────────────────────────────────────────────
   Dropdown open states (desktop)
───────────────────────────────────────────────── */
@media (min-width: 981px) {

  .vhDD:hover .vhDD__panel,
  .vhDD:focus-within .vhDD__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    filter: blur(0);
  }

  .vhDD:hover .vhDD__panel--mini,
  .vhDD:focus-within .vhDD__panel--mini {
    transform: translateX(0) translateY(0);
  }

  .vhDD:hover .vhDD__chev,
  .vhDD:focus-within .vhDD__chev {
    transform: rotate(180deg);
  }
}

/* ────────────────────────────────────────────────
   MEGA DROPDOWN variant (wider, two-column style)
───────────────────────────────────────────────── */
.vhDD__panel--mega {
  width: min(920px, calc(100vw - 36px));
  padding: 0;
  overflow: hidden;
}

.vhMega {
  border-radius: 18px;
  background:
    radial-gradient(1000px 260px at 18% 0%, rgba(200, 169, 81, 0.16), transparent 60%),
    radial-gradient(1000px 260px at 82% 0%, rgba(91, 44, 131, 0.2), transparent 62%),
    rgba(18, 16, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  padding: 16px 16px 14px;
}

.vhMega__top {
  padding: 10px 10px 12px;
}

.vhMega__kicker {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.vhMega__line {
  margin-top: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.vhMega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 10px;
}

.vhMega__col+.vhMega__col {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.vhMega__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 10px;
  margin: 2px 0;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  font-size: 13.5px;
  line-height: 1.25;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.vhMega__arrow {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 18px;
  line-height: 1;
  color: rgba(200, 169, 81, 0.92);
  text-shadow: 0 10px 22px rgba(200, 169, 81, 0.1);
}

.vhMega__link:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .vhDD__panel--mega {
    width: min(560px, calc(100vw - 28px));
  }

  .vhMega__grid {
    grid-template-columns: 1fr;
  }

  .vhMega__col+.vhMega__col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
  }
}

/* ────────────────────────────────────────────────
   MOBILE OFFCANVAS NAV
───────────────────────────────────────────────── */
.vhH__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 9998;
  /* below header (9999) but above page */
}

.vhH__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {

  /* burger ON */
  .vhH__burger {
    display: grid;
  }

  /* brand can shrink */
  .vhH__brand {
    min-width: auto;
  }

  /* nav becomes offcanvas */
  .vhH__nav {
    position: fixed;
    top: 0;
    /* matches .vhH__wrap height */
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;

    padding: 70px 14px 18px;
    overflow: auto;
    overscroll-behavior: contain;

    transform: translateX(110%);
    transition: transform .25s ease;
    z-index: 9999;

    border-left: 1px solid rgba(255, 255, 255, .12);
    background:
      radial-gradient(900px 260px at 18% 0%, rgba(200, 169, 81, 0.14), transparent 60%),
      radial-gradient(900px 260px at 82% 0%, rgba(91, 44, 131, 0.18), transparent 62%),
      rgba(18, 16, 28, 0.98);
    box-shadow: -22px 0 60px rgba(0, 0, 0, .42);
  }

  .vhH__nav.is-open {
    transform: translateX(0);
  }

  /* links block style */
  .vhH__link {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
  }

  .vhH__link::after {
    display: none;
  }

  /* underline off in drawer */

  /* dropdown wrappers full width */
  .vhDD {
    width: 100%;
  }

  .vhDD__btn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
  }

  /* dropdown panel becomes inline accordion (not absolute/floating) */
  .vhDD__panel {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 8px;

    opacity: 1;
    pointer-events: auto;
    filter: none;

    display: none;
    /* closed by default on mobile */
    padding: 12px;
    border-radius: 16px;
  }

  /* mega panel spacing on mobile */
  .vhDD__panel--mega {
    padding: 0;
  }

  /* open state on mobile */
  .vhDD.is-open .vhDD__panel {
    display: block;
  }

  .vhDD.is-open .vhDD__chev {
    transform: rotate(180deg);
  }

  /* mega grid on mobile already handles 1 col in your CSS,
     just ensure borders look good */
  .vhMega {
    padding: 12px;
  }

  .vhMega__grid {
    padding: 0px;
  }
}

/* optional: prevent body scroll when menu open */
body.vh-no-scroll {
  overflow: hidden;
  touch-action: none;
}


/* ================= HERO ================= */
.vh {
  position: relative;
  min-height: clamp(560px, 100vh, 820px);
  overflow: hidden;
  background: #0b0c14;
}

.vh__bg {
  position: absolute;
  inset: 0;
  background: url("/images/gokul-mthura-vrindavan.webp") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.vh__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, .42));
  pointer-events: none;
}

/* ================= HERO CONTENT ================= */
.vh__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: 110px 0 70px;
  /* space for fixed header */
  text-align: center;
}

.vh__inner {
  width: min(var(--max), 100% - (var(--gutter)*2));
  margin: 0 auto;
  color: #fff;
}

.vh__title {
  margin: 0 auto 12px;
  font-weight: 980;
  letter-spacing: -1px;
  line-height: 1.04;
  font-size: clamp(34px, 5.2vw, 72px);
  max-width: 22ch;
  text-shadow: 0 20px 65px rgba(0, 0, 0, .45);
}

.vh__title span {
  background: linear-gradient(90deg, var(--secondary), #ffd98a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vh__sub {
  margin: 0 auto;
  max-width: 72ch;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.7;
  opacity: .92;
}

.vh__ctaRow {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vh__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: .2px;
  transition: .18s ease;
  white-space: nowrap;
}

.vh__btn--primary {
  background: linear-gradient(135deg, var(--secondary), #ffd98a);
  color: #221829;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.vh__btn--primary:hover {
  transform: translateY(-1px);
}

/* ===== INTRO SECTION (Braj 84 Kosh) ===== */
.bkIntro {
  padding: clamp(34px, 6vw, 78px) 0;
  color: var(--text);
}

.bkIntro__wrap {
  width: min(var(--max), 100% - (var(--gutter) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(18px, 3.5vw, 44px);
  align-items: center;
}

.bkIntro__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
  color: rgba(43, 43, 43, .88);
}

.bkIntro__title {
  margin: 14px 0 10px;
  font-weight: 950;
  letter-spacing: -0.6px;
  line-height: 1.08;
  font-size: clamp(26px, 3.2vw, 44px);
  color: #201a2e;
}

.bkIntro__titleAccent {
  color: var(--primary);
  font-weight: 950;
}

.bkIntro__line {
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), rgba(200, 169, 81, .25));
  box-shadow: 0 14px 28px rgba(200, 169, 81, .18);
  margin: 10px 0 16px;
}

.bkIntro__p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(43, 43, 43, .88);
  max-width: 62ch;
}

.bkIntro__p b {
  color: #1f1930;
  font-weight: 900;
}

.bkIntro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.bkChip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(91, 44, 131, .12);
  box-shadow: 0 10px 24px rgba(28, 10, 40, .08);
  color: rgba(43, 43, 43, .88);
  font-weight: 850;
  font-size: 12.5px;
  letter-spacing: .15px;
  position: relative;
}

.bkChip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--secondary);
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 10px 18px rgba(200, 169, 81, .18);
}

.bkIntro__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.bkBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 13.5px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}

.bkBtn--primary {
  color: #1a1408;
  background: linear-gradient(90deg, var(--secondary), rgba(255, 214, 120, .95));
  box-shadow: 0 18px 45px rgba(200, 169, 81, .22);
  border-color: rgba(200, 169, 81, .28);
}

.bkBtn--ghost {
  color: #221a34;
  background: rgba(255, 255, 255, .74);
  border-color: rgba(91, 44, 131, .18);
  box-shadow: var(--shadow2);
}

.bkBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(28, 10, 40, .14);
}

.bkIntro__note {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--stroke);
  box-shadow: 0 14px 30px rgba(28, 10, 40, .10);
  color: rgba(43, 43, 43, .86);
  font-weight: 750;
  font-size: 13px;
  max-width: 66ch;
}

.bkDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 12px 22px rgba(28, 78, 128, .18);
}

/* ===== Right media ===== */
.bkIntro__media {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.bkMediaGrid {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.bkPill {
  margin: 0;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(43, 43, 43, .12);
  box-shadow: var(--shadow);
  background: var(--card);
  aspect-ratio: 3 / 4;
}

.bkPill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.bkPill::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(28, 10, 40, .55));
}

.bkPill figcaption {
  position: absolute;
  inset: auto 0 12px 0;
  text-align: center;
  color: rgba(255, 255, 255, .94);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: .2px;
  z-index: 2;
  text-shadow: 0 10px 22px rgba(0, 0, 0, .35);
}

.bkCardNote {
  width: min(520px, 100%);
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(91, 44, 131, .16);
  box-shadow: 0 18px 55px rgba(28, 10, 40, .12);
  padding: 14px 14px;
}

.bkCardNote__icon {
  width: 100px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #1a1408;
  background: linear-gradient(135deg, var(--secondary), rgba(255, 214, 120, .95));
  box-shadow: 0 14px 30px rgba(200, 169, 81, .18);
}

.bkCardNote__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(43, 43, 43, .86);
  font-weight: 750;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .bkIntro__wrap {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .bkIntro__media {
    justify-items: start;
    width: 100%;
  }

  .bkMediaGrid,
  .bkCardNote {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .bkMediaGrid {
    grid-template-columns: 1fr;
  }

  .bkPill {
    border-radius: 26px;
    aspect-ratio: 16 / 9;
  }
}

/* Car Rental */
.pcFleet {
  background:
    radial-gradient(900px 300px at 15% 0%, rgba(91, 44, 131, .10), transparent 60%),
    radial-gradient(900px 300px at 85% 0%, rgba(200, 169, 81, .12), transparent 60%),
    linear-gradient(180deg, rgba(250, 248, 244, 1), rgba(250, 248, 244, 1));
  padding: 30px 0;
}


/* =============================
   SECTION HEADER
============================= */

.pcHead {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.pcKicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;

  background: rgba(91, 44, 131, .10);
  border: 1px solid rgba(91, 44, 131, .18);
  color: var(--primary);
}

.pcHeading {
  margin: 14px 0 10px;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 950;
  letter-spacing: -.5px;
  line-height: 1.15;

  background: linear-gradient(90deg, #2b213e, #5B2C83);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pcSub {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(43, 43, 43, .72);
  font-weight: 500;
}

.pcHeadLine {
  width: 90px;
  height: 4px;
  border-radius: 999px;
  margin: 16px auto 0;

  background: linear-gradient(90deg,
      var(--secondary),
      rgba(200, 169, 81, .55));
  box-shadow: 0 10px 25px rgba(200, 169, 81, .25);
}

.pcGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .pcGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pcGrid {
    grid-template-columns: 1fr;
  }
}

.pcCard {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(43, 43, 43, .10);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 16px;
  display: grid;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.pcCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(91, 44, 131, .12), transparent 60%),
    radial-gradient(520px 220px at 86% 10%, rgba(200, 169, 81, .14), transparent 62%);
  opacity: .7;
  pointer-events: none;
}

.pcCard>* {
  position: relative;
  z-index: 1;
}

.pcCard:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 44, 131, .22);
  box-shadow: var(--shadow);
}

.pcCard--active {
  border-color: rgba(200, 169, 81, .55);
  box-shadow: 0 28px 78px rgba(28, 10, 40, .16);
}

.pcTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pcTag {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(91, 44, 131, .10);
  border: 1px solid rgba(91, 44, 131, .14);
  font-weight: 950;
  font-size: 12px;
  color: rgba(43, 43, 43, .86);
}

.pcTag--gold {
  background: rgba(200, 169, 81, .22);
  border-color: rgba(200, 169, 81, .34);
}

.pcPax {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(28, 78, 128, .10);
  border: 1px solid rgba(28, 78, 128, .14);
  font-weight: 950;
  font-size: 12px;
  color: rgba(43, 43, 43, .86);
  min-width: 64px;
  text-align: center;
}

.pcPax--gold {
  background: rgba(200, 169, 81, .18);
  border-color: rgba(200, 169, 81, .34);
}

.pcMedia {
  height: 165px;
  /* ✅ compact, no useless space */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(43, 43, 43, .10);
  background: #fff;
  box-shadow: 0 16px 34px rgba(28, 10, 40, .08);
}

.pcMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.pcTitleRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.pcTitle {
  margin: 0;
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -.2px;
  color: #221a34;
}

.pcMini {
  font-weight: 900;
  font-size: 12px;
  color: rgba(43, 43, 43, .64);
  white-space: nowrap;
}

.pcSpecs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pcSpec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(43, 43, 43, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .70);
}

.pcSpec span {
  font-weight: 950;
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(43, 43, 43, .56);
}

.pcSpec b {
  font-weight: 950;
  font-size: 13px;
  color: rgba(43, 43, 43, .86);
}

.pcBtns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2px;
}

.pcBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.pcBtn--gold {
  color: #1a1408;
  background: linear-gradient(90deg, var(--secondary), rgba(255, 214, 120, .95));
  border-color: rgba(200, 169, 81, .28);
  box-shadow: 0 16px 35px rgba(200, 169, 81, .20);
}

.pcBtn--ghost {
  color: #221a34;
  background: rgba(255, 255, 255, .92);
  border-color: rgba(91, 44, 131, .18);
  box-shadow: 0 10px 24px rgba(28, 10, 40, .10);
}

.pcBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(28, 10, 40, .14);
}

/* tour card */
/* Section */
.tpSec {
  background: var(--bg);
  padding: 25px 10px;
}

.tpGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

@media(max-width:980px) {
  .tpGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .tpGrid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.tpCard {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: .25s ease;
}

.tpCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Image */
.tpMedia {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.tpMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.tpCard:hover .tpMedia img {
  transform: scale(1.06);
}

/* Badge */
.tpBadge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
}

/* Duration pill */
.tpDur {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.tpDur i {
  color: var(--primary);
}

/* Body */
.tpBody {
  padding: 14px 16px 16px;
}

.tpTitle {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.tpLoc {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(0, 0, 0, .75);
}

.tpLoc i {
  color: var(--secondary);
}

.tpDesc {
  font-size: 13.5px;
  color: rgba(0, 0, 0, .7);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Footer (no price, no space) */
.tpFoot {
  display: flex;
  gap: 10px;
}

.tpBtn {
  flex: 1;
  padding: 11px 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: .2s ease;
}

.tpBtnGhost {
  background: rgba(91, 44, 131, .08);
  border: 1px solid rgba(91, 44, 131, .18);
  color: var(--primary);
}

.tpBtnGhost:hover {
  background: rgba(91, 44, 131, .12);
}

.tpBtnPrimary {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 10px 25px rgba(28, 10, 40, .18);
}

.tpBtnPrimary:hover {
  transform: translateY(-2px);
}

/* Mobile */
@media(max-width:640px) {
  .tpFoot {
    flex-direction: column;
  }
}

.tNoBox {
  margin: 0;
  display: inline-block;
  position: relative;
  font-weight: 1100;
  letter-spacing: -.75px;
  line-height: 1.05;
  font-size: clamp(32px, 4.8vw, 48px);
  color: var(--text);
  padding: 10px 0 18px;
  isolation: isolate;
}

/* premium word highlight (not box) */
.tNoBox span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* angled ribbon underline (unique) */
.tNoBox::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: min(520px, 92%);
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(200, 169, 81, .0),
      rgba(200, 169, 81, .55),
      rgba(91, 44, 131, .18),
      rgba(28, 78, 128, .55),
      rgba(28, 78, 128, .0));
  transform: skewX(-14deg);
  filter: blur(.2px);
  opacity: .95;
  z-index: -1;
}

/* thin crisp line on top of ribbon (luxury) */
.tNoBox::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: min(520px, 92%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
  transform: skewX(-14deg);
  opacity: .95;
  z-index: -1;
}

/* orbit dots (subtle, not box) */
.tDot1,
.tDot2 {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 14px 28px rgba(28, 10, 40, .14);
  opacity: .95;
}

.tDot1 {
  left: -10px;
  top: 12px;
}

.tDot2 {
  right: -10px;
  bottom: 8px;
}

/* soft glow behind text only (no plate) */
.tGlow {
  position: absolute;
  inset: -30px -50px -35px -50px;
  z-index: -2;
  background:
    radial-gradient(520px 160px at 18% 35%, rgba(200, 169, 81, .18), transparent 64%),
    radial-gradient(520px 160px at 82% 40%, rgba(91, 44, 131, .14), transparent 66%),
    radial-gradient(520px 160px at 55% 100%, rgba(28, 78, 128, .12), transparent 64%);
  filter: blur(10px);
  opacity: .9;
}

@media (max-width: 640px) {
  .tNoBox {
    padding-bottom: 18px;
  }

  .tNoBox::before,
  .tNoBox::after {
    width: 96%;
  }
}

.tpIntro {
  margin-bottom: 30px;
}


/* Paragraphs tighter + cleaner */
.tpIntro p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: rgba(0, 0, 0, .75);
}

/* tour slider */
/* ===== Section ===== */
.ts3 {
  position: relative;
  padding: clamp(28px, 5vw, 56px) 0;
  overflow: hidden;
}

.ts3::before {
  content: "";
  position: absolute;
  inset: -18% -18% auto -18%;
  height: 580px;
  background:
    radial-gradient(900px 340px at 14% 0%, rgba(91, 44, 131, .26), transparent 62%),
    radial-gradient(920px 360px at 84% 0%, rgba(200, 169, 81, .22), transparent 64%),
    radial-gradient(860px 420px at 55% 18%, rgba(28, 78, 128, .18), transparent 60%);
  pointer-events: none;
}

.ts3__wrap {
  position: relative;
  z-index: 1;
}

.ts3__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 14px;
}

.ts3__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(28, 10, 40, .06);
  font-weight: 800;
  font-size: 13px;
}

.ts3__kicker i {
  color: var(--secondary);
}

.ts3__title {
  margin: 10px 0 0;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.7px;
  font-weight: 900;
}

.ts3__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ts3__sub {
  margin: 8px 0 0;
  max-width: 70ch;
  color: rgba(43, 43, 43, .78);
  font-size: 14.2px;
  line-height: 1.55;
}

/* controls */
.ts3__ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ts3__btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .80);
  box-shadow: 0 12px 26px rgba(28, 10, 40, .10);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.ts3__btn:hover {
  transform: translateY(-1px);
  background: #fff;
}

.ts3__btn:active {
  transform: translateY(0px) scale(.98);
}

.ts3__btn i {
  color: var(--primary);
}

.ts3__dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
}

.ts3__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(43, 43, 43, .22);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.ts3__dot.is-on {
  width: 20px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

/* ===== Track ===== */
.ts3__track {
  display: flex;
  gap: 16px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 6px 14px;
  -webkit-overflow-scrolling: touch;
}

.ts3__track::-webkit-scrollbar {
  height: 8px;
}

.ts3__track::-webkit-scrollbar-thumb {
  background: rgba(43, 43, 43, .12);
  border-radius: 999px;
}

.ts3__track::-webkit-scrollbar-track {
  background: transparent;
}

/* ===== Card (DIFFERENT from sample: diagonal glass slab + floating price + rating top-right) ===== */
.t3c {
  flex: 0 0 auto;
  width: clamp(290px, 36vw, 460px);
  height: 500px;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255, 255, 255, .40);
  background: #ddd;
  transform: translateZ(0);
  isolation: isolate;
}

.t3c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform .55s ease;
}

.t3c:hover img {
  transform: scale(1.12);
}

/* premium overlay */
.t3c::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 280px at 18% 0%, rgba(91, 44, 131, .30), transparent 60%),
    radial-gradient(760px 260px at 88% 12%, rgba(200, 169, 81, .18), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .55));
  z-index: 1;
  pointer-events: none;
}

/* diagonal glass slab (unique) */
.t3c__glass {
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: -24px;
  height: 190px;
  transform: skewY(-6deg);
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: rgba(250, 248, 244, .14);
  backdrop-filter: blur(14px);
  z-index: 2;
}

.t3c__glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(91, 44, 131, .16), rgba(28, 78, 128, .10), rgba(200, 169, 81, .12));
  opacity: .75;
}

/* top left tag */
.t3c__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12.5px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(10, 10, 12, .35);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.t3c__tag i {
  color: var(--secondary);
}

/* top right rating */
.t3c__rate {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(10, 10, 12, .35);
  backdrop-filter: blur(12px);
  color: #fff;
  z-index: 3;
  font-weight: 900;
  font-size: 12.5px;
}

.t3c__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--secondary);
  text-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

.t3c__rate small {
  opacity: .85;
  font-weight: 800;
}

/* content */
.t3c__body {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 4;
  transform: translateY(0);
}

.t3c__title {
  margin: 0;
  font-weight: 950;
  font-size: 18.5px;
  line-height: 1.18;
  letter-spacing: -0.25px;
  color: #fff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .35);
}

.t3c__title span {
  color: #fff;
  background: linear-gradient(90deg, rgba(200, 169, 81, .92), rgba(255, 255, 255, .88));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* route line */
.t3c__route {
  margin: 10px 0 0;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .92);
  font-weight: 800;
  font-size: 12.8px;
  line-height: 1.4;
  opacity: .95;
}

.t3c__route i {
  color: var(--secondary);
}

/* meta chips (different placement) */
.t3c__meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.t3c__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.t3c__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  font-size: 12.2px;
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(10, 10, 12, .26);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.t3c__chip i {
  color: var(--secondary);
}



@media (max-width: 860px) {
  .ts3__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ts3__ctrl {
    width: 100%;
    justify-content: space-between;
  }

  .t3c {
    width: min(92vw, 460px);
  }
}

/* hide horizontal scrollbar (track still scrolls) */
.ts3__track,
.tsTrack,
.t2__track {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge old */
}

.ts3__track::-webkit-scrollbar,
.tsTrack::-webkit-scrollbar,
.t2__track::-webkit-scrollbar {
  height: 0;
  display: none;
  /* Chrome/Safari */
}



/* about us */
.abRef {
  position: relative;
  padding: 25px 10px;
  overflow: hidden;
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(91, 44, 131, .10), transparent 62%),
    radial-gradient(900px 320px at 86% 0%, rgba(200, 169, 81, .14), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));
}

/* subtle watermark (map-like) */
.abRef::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(28, 78, 128, .10), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(91, 44, 131, .12), transparent 58%);
  filter: blur(0px);
  opacity: .55;
  pointer-events: none;
}

.abRef__wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT */
.abRef__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .2px;
}

.abRef__eyebrow em {
  font-style: italic;
  font-weight: 900;
  color: var(--primary);
  position: relative;
}

.abRef__eyebrow em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  opacity: .9;
}

.abRef__title {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.9vw, 54px);
  line-height: 1.02;
  letter-spacing: -1px;
  font-weight: 950;
}

.abRef__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.abRef__p {
  margin: 12px 0 0;
  max-width: 70ch;
  color: rgba(43, 43, 43, .78);
  font-size: 15px;
  line-height: 1.75;
}

/* Feature rows (reference-like) */
.abRef__rows {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  max-width: 680px;
}

.abRef__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--stroke);
  box-shadow: 0 14px 28px rgba(28, 10, 40, .06);
}

.abRef__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(280px 120px at 20% 0%, rgba(200, 169, 81, .22), transparent 58%),
    linear-gradient(135deg, rgba(91, 44, 131, .10), rgba(28, 78, 128, .10));
  border: 1px solid rgba(91, 44, 131, .14);
  color: var(--primary);
  font-size: 20px;
}

.abRef__row b {
  display: block;
  font-weight: 950;
  letter-spacing: -0.25px;
  font-size: 16px;
}

.abRef__row p {
  margin: 4px 0 0;
  color: rgba(43, 43, 43, .72);
  font-size: 13.7px;
  line-height: 1.6;
}

/* CTA */
.abRef__cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.abRef__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(91, 44, 131, .20);
  background: linear-gradient(135deg, rgba(91, 44, 131, .10), rgba(200, 169, 81, .16));
  color: var(--text);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(28, 10, 40, .10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.abRef__btn i {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--stroke);
  color: var(--primary);
}

.abRef__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(28, 10, 40, .14);
}

.abRef__btnAlt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .75);
  color: rgba(43, 43, 43, .92);
  font-weight: 950;
  text-decoration: none;
}

.abRef__btnAlt i {
  color: var(--accent);
}

/* RIGHT Visual */
.abRef__visual {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
}

/* big photo */
.abRef__big {
  position: absolute;
  right: 0;
  top: 0;
  width: 92%;
  height: 100%;
  border-radius: calc(var(--radius) + 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 360px at 10% 0%, rgba(91, 44, 131, .22), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .14)),
    url("/images/gokul-mthura-vrindavan.webp");
  background-size: cover;
  background-position: center;
}

/* floating card (small photo) */
.abRef__float {
  position: absolute;
  left: 0;
  top: 36%;
  width: min(340px, 58%);
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid rgba(255, 255, 255, .70);
  box-shadow: 0 22px 60px rgba(28, 10, 40, .18);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .10)),
    url("/images/tours/sri-krishna-janambhoomi-mathura.webp");
  background-size: cover;
  background-position: center;
}


@media (max-width: 980px) {
  .abRef__wrap {
    grid-template-columns: 1fr;
  }

  .abRef__visual {
    min-height: 420px;
  }

  .abRef__big {
    width: 100%;
  }

  .abRef__float {
    left: 16px;
    top: 58%;
    width: min(380px, 76%);
  }
}

/* Why choose us */
.wc2 {
  position: relative;
  padding: clamp(30px, 5vw, 78px) 0;
  overflow: hidden;
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(91, 44, 131, .12), transparent 62%),
    radial-gradient(900px 320px at 85% 0%, rgba(200, 169, 81, .14), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));
}


/* header */
.wc2__head {
  text-align: center;
  margin-bottom: clamp(20px, 3.5vw, 44px);
}

.wc2__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 10px 24px rgba(28, 10, 40, .06);
  font-weight: 900;
  font-size: 13px;
}

.wc2__kicker i {
  color: var(--secondary);
}

.wc2__title {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1.05;
}

.wc2__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wc2__sub {
  margin: 10px auto 0;
  max-width: 70ch;
  color: rgba(43, 43, 43, .72);
  font-size: 15px;
  line-height: 1.7;
}

/* tiles */
.wc2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 22px);
  align-items: stretch;
}

.wc2__tile {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  overflow: hidden;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.wc2__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 240px at 50% 0%, rgba(200, 169, 81, .18), transparent 62%),
    radial-gradient(720px 240px at 10% 10%, rgba(91, 44, 131, .12), transparent 62%);
  pointer-events: none;
}

.wc2__tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(28, 10, 40, .14);
}

/* big icon badge (different than old cards) */
.wc2__icon {
  width: 88px;
  height: 88px;
  margin: 2px auto 14px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 44, 131, .16);
  background:
    radial-gradient(240px 140px at 20% 0%, rgba(200, 169, 81, .30), transparent 60%),
    linear-gradient(135deg, rgba(91, 44, 131, .14), rgba(28, 78, 128, .12));
  position: relative;
  z-index: 1;
}

.wc2__icon i {
  font-size: 34px;
  color: var(--primary);
  filter: drop-shadow(0 12px 18px rgba(28, 10, 40, .12));
}

/* micro accent line under icon */
.wc2__line {
  width: 68px;
  height: 6px;
  border-radius: 99px;
  margin: 0 auto 14px;
  background: linear-gradient(90deg, var(--secondary), rgba(91, 44, 131, .55));
  transform: skewX(-16deg);
  position: relative;
  z-index: 1;
}

.wc2__h {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.wc2__p {
  position: relative;
  z-index: 1;
  margin: 10px auto 0;
  color: rgba(43, 43, 43, .74);
  font-size: 13.8px;
  line-height: 1.65;
  max-width: 40ch;
}

/* subtle bottom tag */
.wc2__tag {
  position: relative;
  z-index: 1;
  margin: 14px auto 0;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .72);
  font-weight: 900;
  font-size: 12.4px;
  color: rgba(43, 43, 43, .86);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wc2__tag i {
  color: var(--secondary);
}

/* responsive */
@media (max-width: 980px) {
  .wc2__grid {
    grid-template-columns: 1fr;
  }

  .wc2__tile {
    text-align: left;
  }

  .wc2__p {
    margin-left: 0;
  }

  .wc2__tag {
    margin-left: 0;
  }
}

/* Hotels */
.hp {
  padding: clamp(26px, 5vw, 70px) 0;
}

.hp__wrap {
  width: min(var(--max), calc(100% - (var(--gutter)*2)));
  margin: 0 auto;
}

.hp__head {
  text-align: center;
  margin-bottom: clamp(14px, 3vw, 34px);
}

.hp__title {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1.05;
}

.hp__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hp__sub {
  margin: 10px auto 0;
  max-width: 70ch;
  color: rgba(43, 43, 43, .72);
  font-size: 15px;
  line-height: 1.7;
}

.hp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 22px);
}

/* Poster card */
.pCard {
  position: relative;
  border-radius: calc(var(--radius) + 16px);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
}

.pCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(28, 10, 40, .16);
}

/* Fixed compact height */
.pCard__poster {
  height: 290px;
  /* ✅ compact: no useless space */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* minimal tint (not dark) */
.pCard__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(91, 44, 131, .16), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .12));
  pointer-events: none;
}

/* rating + type (top corners) */
.pCard__top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}

.pBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
  font-weight: 950;
  font-size: 12.6px;
  color: rgba(43, 43, 43, .92);
  white-space: nowrap;
}

.pBadge i {
  color: var(--secondary);
}

.pTag {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(10, 10, 12, .18);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .92);
}

.pTag i {
  color: var(--secondary);
}

/* slim info strip (signature) */
.pCard__strip {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 12px 12px 12px 14px;
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .60);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.pCard__info {
  min-width: 0;
}

.pCard__name {
  margin: 0;
  font-size: 16.5px;
  font-weight: 950;
  letter-spacing: -.25px;
  line-height: 1.12;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pCard__loc {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.8px;
  font-weight: 800;
  color: rgba(43, 43, 43, .70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pCard__loc i {
  color: var(--primary);
}

/* compact CTA icon button */
.pCard__go {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(91, 44, 131, .20);
  background: linear-gradient(135deg, rgba(91, 44, 131, .10), rgba(200, 169, 81, .16));
  color: var(--primary);
  transition: transform .18s ease, filter .18s ease;
}

.pCard__go:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.pCard__go:active {
  transform: translateY(0) scale(.99);
}


@media(max-width: 980px) {
  .hp__grid {
    grid-template-columns: 1fr;
  }

  .pCard__poster {
    height: 300px;
  }
}

/* FAQs */
.faqX {
  padding: clamp(28px, 5vw, 80px) 0;
  background:
    radial-gradient(900px 340px at 14% 0%, rgba(91, 44, 131, .26), transparent 62%),
    radial-gradient(920px 360px at 84% 0%, rgba(200, 169, 81, .22), transparent 64%),
    radial-gradient(860px 420px at 55% 18%, rgba(28, 78, 128, .18), transparent 60%);
}


/* Header (premium) */
.faqX__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.faqX__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(28, 10, 40, .10);
  font-weight: 950;
  font-size: 13px;
  width: fit-content;
}

.faqX__kicker i {
  color: var(--secondary);
}

.faqX__title {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.6vw, 54px);
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1.05;
}

.faqX__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faqX__sub {
  margin: 10px 0 0;
  color: rgba(43, 43, 43, .72);
  max-width: 78ch;
  line-height: 1.75;
}

.faqX__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 44, 131, .16);
  background: linear-gradient(135deg, rgba(91, 44, 131, .12), rgba(200, 169, 81, .14));
  box-shadow: 0 16px 42px rgba(28, 10, 40, .10);
  font-weight: 950;
  font-size: 13px;
  white-space: nowrap;
}

.faqX__cta i {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--primary);
}

/* Stack container */
.faqX__stack {
  display: grid;
  gap: 14px;
}

/* Premium card with gradient border */
.xItem {
  position: relative;
  border-radius: calc(var(--radius) + 14px);
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(28, 10, 40, .10);
  overflow: hidden;
}

.xItem::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(91, 44, 131, .45),
      rgba(200, 169, 81, .38),
      rgba(28, 78, 128, .35),
      rgba(255, 255, 255, .0));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .9;
}

/* Question row */
.xQ {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 1;
}

.xLeft {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.xIcon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(240px 120px at 20% 0%, rgba(200, 169, 81, .32), transparent 60%),
    linear-gradient(135deg, rgba(91, 44, 131, .16), rgba(28, 78, 128, .12));
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--primary);
  box-shadow: 0 14px 30px rgba(28, 10, 40, .12);
  flex: 0 0 auto;
}

.xText {
  min-width: 0;
}

.xText h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.2px;
  line-height: 1.25;
  color: rgba(43, 43, 43, .95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xText p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(43, 43, 43, .68);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xRight {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.xTag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(255, 255, 255, .55);
  font-weight: 950;
  font-size: 12px;
  color: rgba(43, 43, 43, .72);
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(28, 10, 40, .08);
}

.xTag i {
  color: var(--secondary);
}

.xBtn {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .60);
  background: rgba(255, 255, 255, .66);
  color: rgba(43, 43, 43, .70);
  box-shadow: 0 14px 30px rgba(28, 10, 40, .10);
  transition: transform .2s ease, color .2s ease;
}

/* Answer drawer */
.xA {
  max-height: 0;
  overflow: hidden;
  transition: max-height .30s ease;
  position: relative;
  z-index: 1;
}

.xA__in {
  padding: 0 16px 16px 74px;
  /* aligns with text */
  color: rgba(43, 43, 43, .74);
  line-height: 1.85;
  font-size: 14px;
}

/* Signature divider (premium) */
.xA__divider {
  height: 1px;
  margin: 0 16px 12px 74px;
  background: linear-gradient(90deg,
      rgba(91, 44, 131, .0),
      rgba(91, 44, 131, .20),
      rgba(200, 169, 81, .24),
      rgba(28, 78, 128, .18),
      rgba(91, 44, 131, .0));
}

/* Open state glow (premium) */
.xItem.is-open {
  box-shadow: 0 28px 80px rgba(28, 10, 40, .18);
  background: rgba(255, 255, 255, .62);
}

.xItem.is-open .xBtn {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Hover */
.xItem:hover {
  transform: translateY(-1px);
  transition: transform .18s ease;
}

@media (max-width: 820px) {
  .faqX__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .xText h3 {
    white-space: normal;
  }

  .xText p {
    display: none;
  }

  .xTag {
    display: none;
  }

  .xA__in,
  .xA__divider {
    margin-left: 0;
    padding-left: 16px;
  }
}


/* Gallery */
/* ✅ compact section */
.bgGal {
  padding-bottom: 50px;
}

/* ✅ Layout: looks premium and fills space without “blank” */
.bgGal__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.bgGal__feature {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .6);
  box-shadow: var(--shadow);
  min-height: 240px;
  /* ✅ keeps section compact but premium */
  isolation: isolate;
}

.bgGal__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.bgGal__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 320px at 20% 0%, rgba(200, 169, 81, .26), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .0) 45%, rgba(0, 0, 0, .42));
  opacity: 1;
  pointer-events: none;
}

.bgGal__cap {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 2;
}

.bgGal__capTitle {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.bgGal__capMeta {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, .86);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bgGal__feature:hover img {
  transform: scale(1.08);
}

/* ✅ Filmstrip: compact, no blank space, scroll-snap */
.bgGal__strip {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}

.bgGal__strip::-webkit-scrollbar {
  height: 10px;
}

.bgGal__strip::-webkit-scrollbar-thumb {
  background: rgba(91, 44, 131, .22);
  border-radius: 999px;
}

.bgGal__strip::-webkit-scrollbar-track {
  background: rgba(43, 43, 43, .06);
  border-radius: 999px;
}

.bgGal__thumb {
  position: relative;
  flex: 0 0 190px;
  /* ✅ compact width */
  height: 240px;
  /* ✅ matches feature height */
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .65);
  box-shadow: var(--shadow2);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.bgGal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.bgGal__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .35));
  pointer-events: none;
}

.bgGal__badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(91, 44, 131, .92), rgba(28, 78, 128, .92));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.bgGal__thumb:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.bgGal__thumb:hover img {
  transform: scale(1.08);
}

/* Lightbox */
.bgLB {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.bgLB.is-open {
  display: block;
}

.bgLB__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, .62);
  backdrop-filter: blur(8px);
}

.bgLB__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100% - 24px));
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
  padding: 10px;
}

.bgLB__img {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: contain;
  display: block;
  border-radius: calc(var(--radius) - 10px);
  background: rgba(0, 0, 0, .22);
}

.bgLB__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .30);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 980px) {
  .bgGal__layout {
    grid-template-columns: 1fr;
  }

  .bgGal__feature {
    min-height: 220px;
  }

  .bgGal__thumb {
    height: 190px;
    flex-basis: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .bgGal__thumb,
  .bgGal__thumb img,
  .bgGal__feature img {
    transition: none !important;
  }
}

/* Footer */
/* ===== HERO ===== */
.uxF {
  position: relative;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

.uxF__hero {
  position: relative;
  padding: 34px 0 0;
}

.uxF__heroBG {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at 10% 0%, rgba(91, 44, 131, .32), transparent 60%),
    radial-gradient(1100px 520px at 90% 0%, rgba(200, 169, 81, .26), transparent 60%),
    radial-gradient(1100px 520px at 70% 95%, rgba(28, 78, 128, .18), transparent 62%),
    linear-gradient(180deg, rgba(250, 248, 244, .20), rgba(250, 248, 244, 1) 70%);
}

.uxF__heroWrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 34px;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: clamp(16px, 3vw, 30px);
  align-items: center;
}

.uxF__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(43, 43, 43, .10);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(10px);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, .72);
}

.uxF__pillDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  box-shadow: 0 14px 22px rgba(200, 169, 81, .22);
}

.uxF__heroTitle {
  margin: 14px 0 10px;
  font-size: clamp(24px, 3.1vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1e1a26;
}

.uxF__heroTitle span {
  color: var(--primary);
  background: linear-gradient(90deg, rgba(200, 169, 81, .30), transparent);
  padding: 0 8px;
  border-radius: 14px;
}

.uxF__heroText {
  margin: 0 0 16px;
  max-width: 60ch;
  line-height: 1.7;
  font-weight: 650;
  color: rgba(43, 43, 43, .78);
}

.uxF__heroBtns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.uxFbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(43, 43, 43, .12);
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  background: rgba(255, 255, 255, .72);
}

.uxFbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(28, 10, 40, .12);
}

.uxFbtn--primary {
  color: #fff;
  border-color: rgba(0, 0, 0, .06);
  background:
    radial-gradient(520px 140px at 20% 0%, rgba(255, 255, 255, .22), transparent 60%),
    linear-gradient(90deg, var(--primary), var(--accent));
}

.uxFbtn--ghost {
  color: rgba(43, 43, 43, .88);
}

.uxF__heroRight {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.uxF__feat {
  width: min(420px, 100%);
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(43, 43, 43, .12);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(28, 10, 40, .10);
}

.uxF__featI {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(220px 70px at 30% 10%, rgba(255, 255, 255, .55), transparent 60%),
    linear-gradient(90deg, rgba(200, 169, 81, .26), rgba(91, 44, 131, .14));
  border: 1px solid rgba(43, 43, 43, .10);
  color: var(--primary);
}

.uxF__featT b {
  display: block;
  font-size: 14px;
}

.uxF__featT small {
  display: block;
  margin-top: 2px;
  color: rgba(43, 43, 43, .70);
  font-weight: 750;
}

/* curve divider */
.uxF__curve {
  position: relative;
  height: 58px;
}

.uxF__curve::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1500px, 150vw);
  height: 140px;
  bottom: -76px;
  border-radius: 999px;
  background: #0f0d14;
  box-shadow: 0 -10px 40px rgba(28, 10, 40, .15);
}

/* ===== DARK BODY ===== */
.uxF__body {
  position: relative;
  background:
    radial-gradient(1000px 520px at 10% 10%, rgba(91, 44, 131, .22), transparent 60%),
    radial-gradient(1000px 520px at 90% 0%, rgba(200, 169, 81, .14), transparent 60%),
    radial-gradient(1000px 520px at 85% 95%, rgba(28, 78, 128, .16), transparent 60%),
    linear-gradient(180deg, #0f0d14, #0b0a10 70%, #090810);
  color: rgba(255, 255, 255, .90);
  padding: 42px 0 0;
  overflow: hidden;
}

.uxF__word {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -88px;
  font-size: clamp(96px, 18vw, 260px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.06em;
  color: rgba(200, 169, 81, .10);
  text-transform: capitalize;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  filter: blur(.0px);
}

.uxF__wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 18px;
  z-index: 2;
}

.uxF__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr .95fr;
  gap: clamp(14px, 2.8vw, 28px);
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

/* cards */
.uxF__brandCard,
.uxF__bento,
.uxF__contactCard {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.uxF__logo img {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .35));
}

.uxF__about {
  margin: 12px 0 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  font-weight: 650;
}

.uxF__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.uxF__chip {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
  font-size: 12px;
}

.uxF__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.uxF__soc {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .90);
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.uxF__soc:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .30);
}

/* Bento links */
.uxF__bRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.uxF__box {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  padding: 14px;
}

.uxF__box--wide {
  padding: 14px;
}

.uxF__h {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
  margin-bottom: 12px;
  position: relative;
}

.uxF__h::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.uxF__a {
  display: block;
  padding: 9px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, .82);
  font-weight: 750;
  font-size: 13.5px;
  transition: transform .14s ease, color .14s ease;
}

.uxF__a:hover {
  transform: translateX(3px);
  color: #fff;
}

.uxF__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.uxF__tag {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .84);
  font-weight: 900;
  font-size: 12.5px;
  transition: transform .14s ease, background .14s ease;
}

.uxF__tag:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .10);
}

/* Contact card */
.uxF__contactTop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.uxF__line {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0));
}

.uxF__c {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, .86);
}

.uxF__ci {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(200px 70px at 30% 10%, rgba(255, 255, 255, .20), transparent 60%),
    linear-gradient(90deg, rgba(91, 44, 131, .35), rgba(28, 78, 128, .25));
  color: rgba(255, 255, 255, .92);
  flex: 0 0 auto;
}

.uxF__ct b {
  display: block;
  font-size: 13.5px;
}

.uxF__ct small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.uxF__accept {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.uxF__acceptT {
  font-weight: 900;
  color: rgba(255, 255, 255, .70);
  font-size: 12.5px;
}

.uxF__pay {
  display: flex;
  gap: 10px;
  font-size: 18px;
  color: rgba(255, 255, 255, .80);
}

/* Bottom */
.uxF__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0 0;
}

.uxF__copy {
  color: rgba(255, 255, 255, .72);
  font-weight: 750;
  font-size: 13px;
}

.uxF__copy b {
  color: rgba(255, 255, 255, .94);
}

.uxF__bottomR {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.uxF__mini {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 850;
  font-size: 13px;
}

.uxF__mini:hover {
  color: #fff;
}

.uxF__sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

.uxF__top {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .90);
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.uxF__top:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .30);
}

/* Responsive */
@media (max-width: 980px) {
  .uxF__heroWrap {
    grid-template-columns: 1fr;
  }

  .uxF__heroRight {
    justify-items: start;
  }

  .uxF__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .uxF__bRow {
    grid-template-columns: 1fr;
  }

  .uxF__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* float button */
.miniFab{
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    display: grid;
    gap: 12px;
  }

  .miniFab__btn{
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 16px 40px rgba(28,10,40,.18);
    backdrop-filter: blur(10px);

    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
    will-change: transform;
  }

  .miniFab__btn i{ font-size: 20px; color: #fff; }

  .miniFab__btn:hover{
    transform: translateY(-2px);
    filter: saturate(1.05);
    box-shadow: 0 18px 48px rgba(28,10,40,.22);
  }

  /* Clean tooltip label */
  .miniFab__tip{
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 10px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: .01em;

    background: rgba(255,255,255,.92);
    border: 1px solid var(--stroke);
    color: rgba(43,43,43,.92);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(6px);
    transition: opacity .16s ease, transform .16s ease;
    white-space: nowrap;
  }

  .miniFab__btn:hover .miniFab__tip{
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* Themed gradients (not heavy) */
  .miniFab__btn--call{
    background: linear-gradient(135deg, var(--primary), var(--accent));
  }
  .miniFab__btn--wa{
    background: linear-gradient(135deg, var(--accent), var(--primary));
  }

  /* Mobile: slightly smaller */
  @media (max-width: 560px){
    .miniFab{ right: 12px; bottom: 12px; gap: 10px; }
    .miniFab__btn{ width: 48px; height: 48px; }
    .miniFab__btn i{ font-size: 17px; }
    .miniFab__tip{ display:none; } /* keep super clean on mobile */
  }

  /* contact-us page */
  /* ================= HERO ================= */
.PH {
  position: relative;
  min-height: clamp(610px, 50vh, 820px);
  overflow: hidden;
  background: #0b0c14;
}

.PH__bg {
  position: absolute;
  inset: 0;
  background: url("/images/tours/Jatipura.webp") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.PH__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, .42));
  pointer-events: none;
}

/* ================= HERO CONTENT ================= */
/* Keep your existing .PH, .PH__bg, .PH__shade same */

.PH4__wrap{
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  align-items: center;
  padding: 110px 0 70px; /* header space */
}

.PH4__inner{
  text-align: left;
  color: #fff;
}

/* breadcrumb */
.PH4__crumb{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  align-items:center;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
}
.PH4__crumb a{
  color: rgba(255,255,255,.9);
  text-decoration:none;
  border-bottom: 1px solid rgba(200,169,81,0);
  padding-bottom: 2px;
  transition: .18s ease;
}
.PH4__crumb a:hover{ border-bottom-color: rgba(200,169,81,.75); }
.PH4__crumb span{ opacity:.7; }
.PH4__crumb b{ color:#fff; }

/* small badge */
.PH4__badge{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing:.3px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,12,20,.28);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
}

/* title */
.PH4__title{
  margin: 0 0 10px;
  font-weight: 980;
  letter-spacing: -1px;
  line-height: 1.02;
  font-size: clamp(36px, 5.2vw, 72px);
  text-shadow: 0 25px 70px rgba(0,0,0,.45);
}
.PH4__title span{
  display:inline-block;
  margin-left: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 950;
  letter-spacing:.35px;
  color: #221829;
  background: linear-gradient(135deg, var(--secondary), #ffd98a);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  vertical-align: middle;
}

.PH4__sub{
  margin: 0 0 18px;
  max-width: 64ch;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.90);
}


/* mobile */
@media (max-width: 980px){
  .PH4__wrap{ padding: 90px 0 60px; }
  .PH4__title span{ margin-left: 0; margin-top: 10px; display:inline-flex; }
}

  /* ========= PAGE BG (premium) ========= */
  .cxPage{
    position:relative;
    padding: clamp(22px, 4vw, 44px) 0 clamp(38px, 6vw, 70px);
    background:
      radial-gradient(900px 360px at 12% -10%, rgba(91,44,131,.20), transparent 60%),
      radial-gradient(820px 320px at 88% -10%, rgba(200,169,81,.22), transparent 62%),
      radial-gradient(720px 360px at 70% 110%, rgba(28,78,128,.14), transparent 62%);
  }




  /* ========= CONTENT GRID ========= */
  .cxGrid{
    margin-top: clamp(18px, 3vw, 26px);
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(14px, 3vw, 24px);
    align-items:start;
  }
  @media (max-width: 980px){
    .cxGrid{ grid-template-columns: 1fr; }
  }

  /* ========= CARD ========= */
  .cxCard{
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    overflow:hidden;
  }
  .cxCard__hd{
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--stroke);
    background:
      radial-gradient(700px 220px at 10% 0%, rgba(91,44,131,.10), transparent 60%),
      radial-gradient(700px 220px at 90% 0%, rgba(200,169,81,.12), transparent 60%);
  }
  .cxCard__hd h2{
    margin:0;
    font-size: 18px;
    letter-spacing:-.01em;
  }
  .cxCard__hd p{
    margin: 6px 0 0;
    color: rgba(43,43,43,.72);
    line-height:1.7;
    font-size: 14px;
  }
  .cxCard__bd{ padding: 18px; }

  /* ========= FORM ========= */
  .cxForm{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  @media (max-width: 640px){
    .cxForm{ grid-template-columns: 1fr; }
  }
  .cxField{ display:flex; flex-direction:column; gap:7px; }
  .cxLabel{
    font-weight:800;
    font-size: 13px;
    letter-spacing:.2px;
  }
  .cxInput, .cxSelect, .cxTextarea{
    width:100%;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background:
      radial-gradient(800px 200px at 20% 0%, rgba(91,44,131,.05), transparent 55%),
      #fff;
    outline:none;
    color: var(--text);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  }
  .cxInput:focus, .cxSelect:focus, .cxTextarea:focus{
    border-color: rgba(91,44,131,.38);
    box-shadow: 0 0 0 6px rgba(91,44,131,.12);
  }
  .cxTextarea{ min-height: 130px; resize: vertical; grid-column: 1 / -1; }

  .cxRow{
    grid-column: 1 / -1;
    display:flex;
    gap: 10px;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    margin-top: 2px;
  }
  .cxNote{
    color: rgba(43,43,43,.70);
    font-size: 13px;
    line-height: 1.6;
  }
  .cxSend{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(91,44,131,.24);
    background: linear-gradient(90deg, rgba(91,44,131,.98), rgba(28,78,128,.92));
    color:#fff;
    font-weight:900;
    letter-spacing:.2px;
    box-shadow: 0 18px 45px rgba(28,10,40,.18);
    cursor:pointer;
    transition: transform .18s ease, filter .18s ease;
    white-space:nowrap;
  }
  .cxSend:hover{ transform: translateY(-2px); filter: brightness(1.03); }

  .cxWhats{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(200,169,81,.40);
    background:
      radial-gradient(900px 240px at 20% 0%, rgba(200,169,81,.18), transparent 60%),
      #fff;
    color: #2a2317;
    font-weight:900;
    cursor:pointer;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .cxWhats:hover{ transform: translateY(-2px); box-shadow: 0 18px 45px rgba(28,10,40,.10); }

  /* ========= INFO SIDE ========= */
  .cxInfo{
    display:grid;
    gap: 14px;
  }

  .cxInfoTiles{
    display:grid;
    gap: 12px;
  }
  .cxTile{
    padding: 14px;
    border-radius: 20px;
    border: 1px solid var(--stroke);
    background:
      radial-gradient(900px 220px at 15% 0%, rgba(91,44,131,.08), transparent 60%),
      radial-gradient(900px 220px at 85% 0%, rgba(200,169,81,.10), transparent 62%),
      #fff;
    box-shadow: var(--shadow2);
    display:flex;
    gap: 12px;
    align-items:flex-start;
  }
  .cxTile__icon{
    width: 44px; height: 44px;
    border-radius: 16px;
    display:grid; place-items:center;
    background: rgba(91,44,131,.10);
    border: 1px solid rgba(91,44,131,.14);
    color: var(--primary);
    flex: 0 0 auto;
  }
  .cxTile b{ display:block; font-size: 14px; }
  .cxTile p{
    margin: 4px 0 0;
    color: rgba(43,43,43,.72);
    line-height: 1.6;
    font-size: 13px;
  }
  .cxTile a{
    font-weight:900;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ========= MAP ========= */
  .cxMap{
    border-radius: var(--radius);
    overflow:hidden;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow2);
    background:#fff;
  }
  .cxMap iframe{
    width:100%;
    height: 320px;
    border:0;
    display:block;
  }
  .cxMap__cap{
    padding: 12px 14px;
    border-top: 1px solid var(--stroke);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    background:
      radial-gradient(700px 200px at 20% 0%, rgba(28,78,128,.08), transparent 60%),
      #fff;
  }
  .cxMap__cap span{
    font-weight:900;
    letter-spacing:.2px;
    color: var(--text);
  }
  .cxMini{
    display:flex;
    gap: 10px;
    flex-wrap:wrap;
    align-items:center;
    color: rgba(43,43,43,.72);
    font-size: 13px;
  }
  .cxMini i{ color: var(--primary); }

  /* ========= FAQ (compact, modern) ========= */
  .cxFaq details{
    border: 1px solid var(--stroke);
    border-radius: 18px;
    background:#fff;
    box-shadow: var(--shadow2);
    overflow:hidden;
  }
  .cxFaq details + details{ margin-top: 10px; }
  .cxFaq summary{
    list-style:none;
    cursor:pointer;
    padding: 14px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    font-weight:900;
  }
  .cxFaq summary::-webkit-details-marker{ display:none; }
  .cxFaq summary i{
    color: var(--primary);
    transition: transform .2s ease;
  }
  .cxFaq details[open] summary i{ transform: rotate(180deg); }
  .cxFaq .cxFaq__ans{
    padding: 0 14px 14px;
    color: rgba(43,43,43,.74);
    line-height: 1.7;
    font-size: 13px;
  }



  .OSV{
  padding: 30px 0;
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(91,44,131,.12), transparent 60%),
    radial-gradient(900px 320px at 88% 0%, rgba(200,169,81,.12), transparent 60%),
    linear-gradient(180deg, rgba(28,78,128,.03), transparent 35%),
    var(--bg);
}

.OSV__head{
  text-align:center;
  margin-bottom: 46px;
}

.OSV__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(91,44,131,.08);
  border: 1px solid rgba(91,44,131,.14);
}

.OSV__title{
  margin: 16px 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 980;
  color: var(--text);
}
.OSV__title span{
  display:block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.OSV__lead{
  margin: 0 auto;
  max-width: 70ch;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.OSV__grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

/* VISUAL */
.OSV__frame{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  background: #111;
  min-height: 460px;
}

.OSV__img{
  position:absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}


.OSV__img--b{
  clip-path: polygon(0 55%, 100% 65%, 100% 100%, 0 100%);
  opacity: .95;
}

.OSV__badge{
  position:absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(10,12,20,.42);
  backdrop-filter: blur(12px);
  color:#fff;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

.OSV__badgeTop{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .4px;
  opacity: .95;
  font-size: 13px;
}

.OSV__spark{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), #ffd98a);
}

.OSV__badgeBig{
  margin-top: 6px;
  font-size: 22px;
  font-weight: 980;
  letter-spacing: -.3px;
}

.OSV__badgeSub{
  margin-top: 4px;
  font-size: 13px;
  opacity: .85;
  line-height: 1.45;
}

.OSV__miniRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.OSV__mini{
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  padding: 14px 14px;
}

.OSV__miniK{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
}

.OSV__miniV{
  font-size: 15px;
  font-weight: 950;
  color: var(--text);
}

/* STORY TIMELINE */
.OSV__story{
  position: relative;
  padding-left: 22px;
}

.OSV__story::before{
  content:"";
  position:absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(91,44,131,.55), rgba(200,169,81,.55));
  opacity: .55;
  border-radius: 999px;
}

.OSV__step{
  position: relative;
  display:grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 18px 0;
}

.OSV__node{
  position: relative;
  width: 22px;
  display:grid;
  place-items:center;
}
.OSV__node span{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  border: 2px solid rgba(200,169,81,.75);
}

.OSV__body{
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  padding: 18px 18px;
  transition: .25s ease;
}

.OSV__step:hover .OSV__body{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.OSV__meta{
  display:flex;
  gap: 10px;
  align-items:center;
  font-size: 12px;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #6a6a6a;
  font-weight: 950;
  margin-bottom: 8px;
}
.OSV__meta b{
  color: var(--primary);
  font-weight: 980;
}
.OSV__meta i{
  width: 5px; height: 5px;
  border-radius: 999px;
  background: rgba(200,169,81,.9);
  opacity: .85;
}

.OSV__body h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 980;
  color: var(--text);
}

.OSV__body p{
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.OSV__step--active .OSV__body{
  background: linear-gradient(135deg, rgba(91,44,131,.06), rgba(200,169,81,.06));
  border-color: rgba(91,44,131,.22);
}

.OSV__step--highlight .OSV__body{
  background: linear-gradient(135deg, rgba(200,169,81,.14), rgba(91,44,131,.08));
  border-color: rgba(200,169,81,.35);
}

/* CTA inside final */
.OSV__cta{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.OSV__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 950;
  transition: .18s ease;
  border: 1px solid transparent;
}

.OSV__btn--pri{
  background: linear-gradient(135deg, var(--secondary), #ffd98a);
  color: #221829;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.OSV__btn--pri:hover{ transform: translateY(-2px); }

.OSV__btn--ghost{
  background: rgba(255,255,255,.0);
  border-color: rgba(43,43,43,.18);
  color: var(--text);
}
.OSV__btn--ghost:hover{ transform: translateY(-2px); }

/* MOBILE */
@media(max-width: 980px){
  .OSV{ padding: 90px 0; }
  .OSV__grid{ grid-template-columns: 1fr; }
  .OSV__frame{ min-height: 360px; }
  .OSV__story{ padding-left: 18px; }
  .OSV__miniRow{ grid-template-columns: 1fr; }
}

/* why us */
.WCR{
  padding: 30px 0;
  background:
    radial-gradient(950px 320px at 12% 0%, rgba(91,44,131,.12), transparent 60%),
    radial-gradient(950px 320px at 88% 0%, rgba(200,169,81,.12), transparent 60%),
    var(--bg);
}

/* Head */
.WCR__head{ margin-bottom: 22px; }

.WCR__kicker{
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--primary);
}

.WCR__title{
  margin: 12px 0 8px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 980;
  color: var(--text);
}
.WCR__title span{
  display:block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.WCR__headRow{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  flex-wrap: wrap;
}

.WCR__sub{
  margin: 0;
  max-width: 70ch;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.WCR__cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.WCR__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 950;
  border: 1px solid transparent;
  transition: .18s ease;
}

.WCR__btn--pri{
  background: linear-gradient(135deg, var(--secondary), #ffd98a);
  color: #221829;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.WCR__btn--pri:hover{ transform: translateY(-2px); }

.WCR__btn--ghost{
  background: rgba(255,255,255,.70);
  border-color: rgba(43,43,43,.12);
  color: var(--text);
}
.WCR__btn--ghost:hover{ transform: translateY(-2px); }

/* Rail */
.WCR__rail{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 14px 8px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.WCR__rail::-webkit-scrollbar{ height: 10px; }
.WCR__rail::-webkit-scrollbar-thumb{
  background: rgba(43,43,43,.18);
  border-radius: 999px;
}
.WCR__rail::-webkit-scrollbar-track{
  background: rgba(43,43,43,.06);
  border-radius: 999px;
}

.WCR__card{
  scroll-snap-align: start;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}

.WCR__card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 220px at 15% 0%, rgba(91,44,131,.16), transparent 60%),
    radial-gradient(700px 220px at 85% 0%, rgba(200,169,81,.16), transparent 60%);
  opacity:.75;
  pointer-events:none;
}

.WCR__card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200,169,81,.35);
}

.WCR__cap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.WCR__badge{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 980;
  color:#221829;
  background: linear-gradient(135deg, var(--secondary), #ffd98a);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}

.WCR__capT{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: rgba(43,43,43,.62);
}

.WCR__card h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 980;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.WCR__card p{
  margin: 0;
  color: #555;
  line-height: 1.65;
  font-size: 14.5px;
  position: relative;
  z-index: 1;
}

.WCR__foot{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(43,43,43,.18);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing:.3px;
  color: rgba(43,43,43,.70);
  position: relative;
  z-index: 1;
}

/* Ribbon */
.WCR__ribbon{
  margin-top: 18px;
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255,255,255,.70);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.WCR__rItem{
  display:flex;
  align-items:baseline;
  gap: 8px;
  white-space: nowrap;
}
.WCR__rItem b{
  font-size: 18px;
  color: var(--primary);
  font-weight: 980;
}
.WCR__rItem span{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .65px;
  font-weight: 900;
  color:#666;
}

/* Mobile */
@media(max-width: 980px){
  .WCR__headRow{ align-items: start; }
  .WCR__ribbon{ border-radius: 22px; }
}

/* review */
.revX{
  padding: 50px 0;
  background: var(--bg);
}

.revX__wrap{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items:center;
}

/* LEFT SIDE */
.revX__intro{
  position:relative;
}

.revX__intro::before{
  content:"";
  position:absolute;
  left:-28px;
  top:8px;
  width:3px;
  height:140px;
  background: var(--secondary);
}

.revX__label{
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  color:var(--primary);
  text-transform:uppercase;
}

.revX__intro h2{
  font-size:42px;
  line-height:1.15;
  margin:18px 0 14px;
  color:var(--primary);
}

.revX__intro p{
  font-size:15px;
  line-height:1.7;
  color:rgba(43,43,43,.75);
  max-width:420px;
}

.revX__rating{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:16px;
}

.revX__ratingNum{
  font-size:34px;
  font-weight:800;
  color:var(--primary);
}

.revX__stars{
  color:var(--secondary);
  letter-spacing:2px;
  font-size:15px;
}

/* RIGHT SIDE SLIDER */
.revX__slider{
  overflow:hidden;
  position:relative;
}

.revX__track{
  display:flex;
  gap:60px;
  will-change:transform;
}

.revX__item{
  flex:0 0 420px;
  padding-bottom:30px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.revX__item p{
  font-size:17px;
  line-height:1.7;
  margin-bottom:22px;
  color:var(--text);
}

.revX__user{
  display:flex;
  align-items:center;
  gap:14px;
}

.revX__user img{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
}

.revX__user strong{
  display:block;
  color:var(--primary);
  font-size:15px;
}

.revX__user span{
  font-size:13px;
  color:rgba(43,43,43,.6);
}

/* Responsive */
@media(max-width: 980px){
  .revX__wrap{
    grid-template-columns:1fr;
    gap:50px;
  }
  .revX__intro::before{
    display:none;
  }
}

/* pop up */
/* Trigger */
  .tbBtn{
    border:0;
    cursor:pointer;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    color:#fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 12px 26px rgba(28,10,40,.18);
  }

  /* Overlay */
  .tbOverlay{
    position: fixed; inset: 0;
    display:none;
    place-items:center;
    padding: 18px;
    background: rgba(10,10,18,.55);
    backdrop-filter: blur(6px);
    z-index: 99999;
  }
  .tbOverlay.is-open{ display:grid; }

  /* Modal */
  .tbModal{
    width: min(720px, 100%);
    border-radius: calc(var(--radius) + 10px);
    background: #fff;
    border: 1px solid var(--stroke);
    box-shadow: 0 28px 90px rgba(0,0,0,.22);
    overflow:hidden;
    transform: translateY(10px);
    opacity:0;
    animation: tbIn .18s ease forwards;
  }
  @keyframes tbIn{ to{ transform:translateY(0); opacity:1; } }

  /* Top header */
  .tbTop{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 16px;
    padding: 20px 22px;
    background:
      radial-gradient(900px 220px at 10% 0%, rgba(91,44,131,.10), transparent 60%),
      radial-gradient(900px 220px at 90% 0%, rgba(200,169,81,.10), transparent 60%),
      #fff;
    border-bottom: 1px solid var(--stroke);
  }
  .tbKicker{
    display:inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
    color: var(--primary);
    text-transform: uppercase;
  }
  .tbTop h3{
    margin: 8px 0 6px;
    color: var(--primary);
    font-size: 22px;
  }
  .tbTop p{
    margin:0;
    color: rgba(43,43,43,.70);
    font-size: 13.5px;
    line-height: 1.55;
  }
  .tbClose{
    width: 42px; height: 42px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: #fff;
    cursor:pointer;
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    flex: 0 0 auto;
  }
  .tbClose:hover{ background: var(--bg); }

  /* Form */
  .tbForm{ padding: 18px 22px 22px; }
  .tbGrid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .tbField label{
    display:block;
    font-weight: 900;
    font-size: 12.5px;
    color: rgba(43,43,43,.82);
    margin: 0 0 6px;
  }
  .tbField input, .tbField select, .tbField textarea{
    width:100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(43,43,43,.14);
    background: #fff;
    outline:none;
    font-size: 14px;
    color: var(--text);
  }
  .tbField textarea{ resize: vertical; }

  .tbField input:focus, .tbField select:focus, .tbField textarea:focus{
    border-color: rgba(91,44,131,.45);
    box-shadow: 0 0 0 4px rgba(91,44,131,.10);
  }

  .tbSpan2{ grid-column: span 2; }

  /* Actions */
  .tbActions{
    display:flex;
    gap: 10px;
    margin-top: 14px;
  }
  .tbPrimary{
    flex: 1;
    border:0;
    cursor:pointer;
    padding: 13px 16px;
    border-radius: 16px;
    font-weight: 900;
    color:#fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 12px 26px rgba(28,10,40,.18);
  }
  .tbPrimary:hover{ transform: translateY(-1px); }
  .tbGhost{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 13px 14px;
    border-radius: 16px;
    font-weight: 900;
    text-decoration:none;
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(91,44,131,.22);
    white-space: nowrap;
  }
  .tbGhost:hover{ background: rgba(91,44,131,.06); }

  .tbNote{
    margin-top: 10px;
    text-align:center;
    font-size: 12px;
    color: rgba(43,43,43,.62);
  }

  .tbOk{
    display:none;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(200,169,81,.45);
    background: rgba(200,169,81,.12);
    font-weight: 900;
    color: rgba(43,43,43,.85);
  }

  /* ===== Responsive ===== */
  @media (max-width: 560px){
    .tbGrid{ grid-template-columns: 1fr; }
    .tbSpan2{ grid-column: auto; }

    /* ✅ Mobile: bottom sheet + internal scroll (NO CUT) */
    .tbOverlay{
      padding: 10px;
      align-items: end;                 /* bottom sheet */
    }
    .tbModal{
      width: 100%;
      border-radius: 18px 18px 0 0;
      max-height: 92dvh;                /* IMPORTANT */
      overflow: hidden;                 /* header sticky works */
    }
    .tbTop{
      position: sticky;
      top: 0;
      z-index: 5;
      background: #fff;
    }
    .tbForm{
      max-height: calc(92dvh - 96px);   /* header approx */
      overflow: auto;                   /* IMPORTANT */
      -webkit-overflow-scrolling: touch;
      padding-bottom: 18px;
    }
    .tbActions{
      position: sticky;                 /* keep CTA visible */
      bottom: 0;
      z-index: 6;
      background: #fff;
      padding: 10px 0 6px;
      margin-top: 12px;
      border-top: 1px solid rgba(43,43,43,.08);
      flex-direction: column;           /* stacked buttons */
    }
  }
