.btn-book-now-mobile {
  display: none;
}

/* ================================================================
   KANCHENJUNGA TOURS & TRAVELS
   Theme: Himalayan Skies (Sky Blue, White, Forest Green)
   Palette: Bright White, Sky Blue, Forest Green, Slate Grey
   Fonts:  Bebas Neue (display) · Jost (body) · Cormorant Infant (italic accents)
   ================================================================ */

:root {
  /* ── PALETTE ── */
  /* Deep Navy/Slate for darks (text & dark backgrounds) */
  --black: #0d1b2a;
  --black-2: #1b263b;
  --black-3: #415a77;
  --black-4: #778da9;
  --black-5: #e0e1dd;

  /* Sky Blue for primary accents (buttons, highlights) */
  --amber: #4facfe;
  --amber-dark: #00f2fe;
  --amber-glow: rgba(79, 172, 254, .18);
  --amber-pale: #e0f7fa;

  /* Whites & Frost (Base Backgrounds) */
  --ivory: #ffffff;
  --ivory-2: #f8f9fa;
  --ivory-3: #e9ecef;

  /* Slate Greys for secondary text/borders */
  --slate: #6c757d;
  --slate-light: #adb5bd;
  --slate-pale: #dee2e6;

  --white: #ffffff;
  --red: #ff4d4f;
  /* Vivid Forest green for secondary accents/success */
  --green: #2b9348;

  /* ── TYPOGRAPHY ── */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --font-serif: 'Cormorant Infant', Georgia, serif;

  /* ── SHADOWS ── */
  --shadow-amber: 0 8px 32px rgba(79, 172, 254, .22);
  --shadow-amber-lg: 0 20px 60px rgba(79, 172, 254, .18);
  --shadow-dark: 0 8px 30px rgba(13, 27, 42, .15);
  --shadow-dark-lg: 0 24px 70px rgba(13, 27, 42, .25);
  --shadow-inset: inset 0 0 0 1px rgba(255, 255, 255, .1);

  /* ── LAYOUT ── */
  --nav-h: 68px;
  --ribbon-h: 36px;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;

  /* ── EASING ── */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-in: cubic-bezier(.55, 0, 1, .45);
  --tr: all .32s var(--ease);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input,
select,
textarea {
  font-family: var(--font-body);
  outline: none;
}

.container {
  /* max-width: 100%; */
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── GLOBAL TYPE HELPERS ── */
.sec-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.sec-eyebrow.light {
  color: var(--amber);
}

.sec-eyebrow.light::before {
  background: var(--amber);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 18px;
}

.sec-title em {
  font-style: normal;
  color: var(--amber);
}

.sec-title.light {
  color: var(--white);
}

.sec-title.light em {
  color: var(--amber);
}

.sec-body {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.sec-body.light {
  color: rgba(255, 255, 255, .65);
}

.sec-head-center {
  text-align: center;
  margin-bottom: 52px;
}

.sec-head-center .sec-eyebrow {
  justify-content: center;
}

.sec-head-center .sec-eyebrow::before {
  display: none;
}

.sec-head-center .sec-eyebrow::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

/* ── GLOBAL BUTTONS ── */
.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: var(--black);
  padding: 14px 30px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .3px;
  border-radius: var(--radius-sm);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.btn-amber::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  z-index: 0;
}

/* .btn-amber:hover::after { transform: scaleX(1); } */
.btn-amber>* {
  position: relative;
  z-index: 1;
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
  color: var(--white);
}

.btn-outline-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  transition: var(--tr);
}

.btn-outline-amber:hover {
  background: var(--amber);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  transition: var(--tr);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .16);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ================================================================
   PRELOADER
   ================================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pl-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pl-mountain {
  width: 120px;
  margin-bottom: 8px;
}

.pl-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pl-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
  animation: plUp .7s var(--ease) .3s both;
}

.pl-sub {
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
  animation: plUp .7s var(--ease) .5s both;
}

.pl-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  margin-top: 22px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  animation: plUp .7s var(--ease) .6s both;
}

.pl-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--green));
  animation: plProgress 1.8s var(--ease) .7s both;
}

@keyframes plUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes plProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ================================================================
   TOP RIBBON
   ================================================================ */
.top-ribbon {
  height: var(--ribbon-h);
  background: var(--black-2);
  overflow: hidden;
  transition: height .4s cubic-bezier(.22, .61, .36, 1),
    opacity .4s cubic-bezier(.22, .61, .36, 1);
}

.top-ribbon.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.22, .61, .36, 1),
    opacity .4s cubic-bezier(.22, .61, .36, 1);
}

.ribbon-inner {
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ribbon-left {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.ribbon-left a {
  color: rgb(255, 255, 255);
  font-size: .72rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--tr);
}

.ribbon-left a:hover {
  color: var(--amber);
}

.ribbon-left i {
  color: var(--amber);
  font-size: .65rem;
}

/* .rdot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.2); } */
.ribbon-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ribbon-right a {
  color: rgba(255, 255, 255);
  font-size: .8rem;
  transition: var(--tr);
}

.ribbon-right a:hover {
  color: var(--amber);
}

.ribbon-cta {
  background: var(--amber);
  color: var(--black);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  transition: var(--tr);
}

.ribbon-cta:hover {
  background: var(--amber-dark);
}

.ribbon-packages {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}

.ribbon-packages-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ribbonScroll 28s linear infinite;
}

.ribbon-packages:hover .ribbon-packages-track {
  animation-play-state: paused;
}

@keyframes ribbonScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.rp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .4px;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  padding: 0 16px;
  white-space: nowrap;
  transition: color .25s;
  cursor: pointer;
}

.rp-link i {
  color: var(--amber);
  font-size: .35rem;
  flex-shrink: 0;
}

.rp-link:hover {
  color: var(--amber);
}

.rp-sep {
  color: rgba(255, 255, 255, .2);
  font-size: .75rem;
  flex-shrink: 0;
  user-select: none;
  padding: 0 2px;
}

.rp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .4px;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  padding: 0 10px;
  white-space: nowrap;
  transition: color .25s;
}

.rp-link i {
  color: var(--amber);
  font-size: .35rem;
  flex-shrink: 0;
}

.rp-link:hover {
  color: var(--amber);
}

.rp-sep {
  color: rgba(255, 255, 255, .2);
  font-size: .75rem;
  flex-shrink: 0;
  user-select: none;
}

/* Hide overflow links on smaller screens */
@media (max-width: 1100px) {

  .ribbon-packages .rp-link:nth-child(n+6),
  .ribbon-packages .rp-sep:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 800px) {

  .ribbon-packages .rp-link:nth-child(n+4),
  .ribbon-packages .rp-sep:nth-child(n+3) {
    display: none;
  }
}

.ribbon-marquee span {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeInner 22s linear infinite;
}

/* @keyframes marqueeInner { from { transform:translateX(60vw); } to { transform:translateX(-100%); } } */

/* ================================================================
   NAVBAR — FLOATING GLASS PILL
   ================================================================ */

.navbar {
  position: fixed;
  top: 42px;
  /* sits just below ribbon (36px) + 6px gap */
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 1240px;
  height: 70px;
  z-index: 1000;
  border-radius: 60px;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .0);
  box-shadow: none;
  transition: top .35s cubic-bezier(.22, .61, .36, 1),
    background .4s cubic-bezier(.22, .61, .36, 1),
    border-color .4s cubic-bezier(.22, .61, .36, 1),
    box-shadow .4s cubic-bezier(.22, .61, .36, 1);
}

.navbar.scrolled {
  top: 0px;
  /* stays floating */
  left: 50%;
  transform: translateX(-50%);
  /* stays centered */
  width: 94%;
  max-width: 1240px;
  border-radius: 60px;
  /* keeps pill shape */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 33, 58, 0.92);
  /* dark glass */
  border: 1px solid rgba(232, 160, 32, .2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
  animation: navSlideDown 3s cubic-bezier(.34, 1.56, .64, 1) both;
}

.navbar.scrolled::before,
.navbar.scrolled-default::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 20 L20 0 L40 20 L20 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.3'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

@keyframes navSlideDown {
  0% {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* NAV CONTAINER */
.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  gap: 16px;
  position: relative;
  z-index: 1;
  /* sits above the ::before pattern */
}

/* ── LOGO ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo i {
  font-size: 1.35rem;
  color: var(--amber);
}

.nav-logo span {
  color: var(--white);
}

.nav-logo em {
  font-style: normal;
  color: var(--amber);
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: rgb(255, 255, 255);
  transition: var(--tr);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: rgb(255, 255, 255);
  background: var(--amber);
}

.nav-link.active {
  background: var(--amber);
  color: rgb(255, 255, 255);
}

.nav-chev {
  font-size: .6rem;
  opacity: .6;
  transition: transform .25s var(--ease);
}

.has-mega:hover .nav-chev {
  transform: rotate(180deg);
}

/* ── MEGA DROPDOWN ── */
.has-mega {
  position: relative;
}

.mega-drop {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--ivory-2);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 24px;
  width: 560px;
  box-shadow: var(--shadow-dark-lg);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
}

.has-mega:hover .mega-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  font-size: .86rem;
  color: var(--black);
  border-radius: var(--radius-sm);
  transition: var(--tr);
  text-decoration: none;
}

.mega-col a i {
  color: var(--amber);
  width: 14px;
  font-size: .8rem;
}

.mega-col a:hover {
  background: var(--amber-pale);
  color: var(--amber);
  padding-left: 16px;
}

.mega-promo {
  width: 160px;
  height: 220px;
  /* fixed height — never grows */
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.mega-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  display: block;
  transition: opacity .2s ease;
}

.mega-promo-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.mega-promo-text span {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3px;
}

.mega-promo-text strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .5px;
}

.mega-promo-text p {
  color: rgba(255, 255, 255, .65);
  font-size: .72rem;
}

.mega-drop-sm {
  width: 260px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}

.has-mega:hover .mega-drop-sm {
  transform: translateX(-50%) translateY(0);
}

/* ── GALLERY MEGA DROP ── */
.mega-drop-gallery {
  width: 620px;
  gap: 8px;
}

.mega-col-center {
  border-left: 1px solid var(--ivory-3);
  border-right: 1px solid var(--ivory-3);
  padding: 0 8px;
}

.mega-drop-gallery .mega-label {
  white-space: nowrap;
  min-height: 24px;
  display: flex;
  align-items: center;
}

.mega-drop-gallery .mega-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: flex-start;
}

.mega-drop-gallery .mega-link {
  white-space: nowrap;
}

.mega-drop-gallery .mega-col a {
  padding: 9px 4px;
}

.mega-drop-gallery .mega-col a:hover {
  padding-left: 8px;
}

.mega-drop-gallery .mega-promo {
  width: 140px;
  height: 160px;
}

/* ================================================================
   PACKAGES DUAL MEGA DROPDOWN — Travel / Homestays
   ================================================================ */

/* Wider drop to accommodate tabs */
.mega-drop-dual {
  width: 620px;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

/* ── TAB SWITCHER ── */
.mdd-tabs {
  display: flex;
  border-bottom: 1px solid var(--ivory-3);
  background: var(--ivory-2);
  flex-shrink: 0;
}

.mdd-tab {
  flex: 1;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--slate);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-body);
  transition: color .25s, border-color .25s, background .25s;
}

.mdd-tab i {
  font-size: .8rem;
}

.mdd-tab:hover {
  color: var(--black);
  background: var(--white);
}

.mdd-tab.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
  background: var(--white);
}

/* ── PANELS ── */
.mdd-panel {
  display: none;
  padding: 20px;
  gap: 24px;
  flex-direction: row;
}

.mdd-panel.active {
  display: flex;
}

/* ── HOMESTAY LINK ACCENT ── */
.mdd-hs-link i {
  color: #22c55e !important;
}

/* ── BOOK NOW BUTTON ── */
.btn-book-now {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .3px;
  transition: var(--tr);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-book-now:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, .35);
}

/* ── NAV ACTIONS ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px 2px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── INNER PAGE STATE ── */
.navbar.scrolled-default {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 1240px;
  border-radius: 60px;
  background: rgba(5, 33, 58, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 160, 32, .2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .btn-book-now-mobile {
    display: block;
    margin-top: 24px;
    padding: 13px 16px;
    background: var(--amber);
    color: var(--black);
    font-weight: 700;
    font-size: .88rem;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
  }


  /* ── Navbar pill shrinks on mobile ── */
  .navbar {
    top: 10px;
    width: 94%;
    height: 60px;
  }

  .navbar.scrolled,
  .navbar.scrolled-default {
    top: 10px;
    width: 94%;
    border-radius: 60px;
  }

  .hamburger {
    display: flex;
  }

  .btn-book-now {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: var(--black-2);
    border-left: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    padding: 80px 20px 40px;
    transition: right .38s var(--ease);
    box-shadow: -10px 0 50px rgba(0, 0, 0, .5);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: .92rem;
    color: rgba(255, 255, 255, .72);
    justify-content: space-between;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--white);
  }

  .nav-link.active {
    background: rgba(232, 160, 32, .15);
    color: var(--amber);
  }

  /* Mega drop — static on mobile */
  /* Mega drop — static on mobile */
  .mega-drop,
  .mega-drop-dual,
  .mega-drop-gallery {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, .04) !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 8px 0 !important;
    margin: 4px 0 0 !important;
    border-radius: var(--radius-sm) !important;
    display: none;
    left: auto !important;
    right: auto !important;
  }

  .has-mega.open .mega-drop,
  .has-mega.open .mega-drop-dual,
  .has-mega.open .mega-drop-gallery {
    display: flex !important;
  }

  .mega-promo {
    display: none;
  }

  .mega-label {
    padding: 4px 12px;
    margin-bottom: 2px;
    color: var(--white) !important;
  }

  .mega-col a {
    color: rgba(255, 255, 255, .55) !important;
  }

  .mega-col a:hover {
    background: rgba(232, 160, 32, .08) !important;
    color: var(--amber) !important;
    padding-left: 18px;
  }

  /* Dual mega tab panels on mobile */
  .mega-drop-dual {
    padding: 0 !important;
  }

  .mdd-tabs {
    width: 100% !important;
  }

  .mdd-panel {
    flex-direction: column !important;
    padding: 12px !important;
    gap: 16px !important;
  }

  .mdd-panel .mega-col {
    width: 100% !important;
  }

  /* Gallery mega drop — mobile columns */
  .mega-drop-gallery .mega-col,
  .mega-drop-gallery .mega-col-center {
    width: 100% !important;
    border: none !important;
    padding: 0 12px !important;
  }

  .mega-drop-gallery .mega-label {
    margin-top: 10px !important;
    margin-bottom: 4px !important;
  }

}

@media (max-width: 600px) {
  .navbar {
    top: 8px;
    width: 96%;
    height: 56px;
  }

  .navbar.scrolled,
  .navbar.scrolled-default {
    top: 8px;
    width: 96%;
  }

  .nav-container {
    padding: 0 14px;
  }

  .nav-logo {
    font-size: .95rem;
  }

  .nav-logo i {
    font-size: 1rem;
  }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  height: 100svh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}

/* GLIDE fills full hero */
.hero-glide,
.hero-glide .glide__track,
.hero-glide .glide__slides {
  height: 100%;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: var(--bg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg,
      rgba(10, 10, 10, .9) 0%,
      rgba(10, 10, 10, .65) 50%,
      rgba(10, 10, 10, .35) 100%);
}

/* HERO BODY */
.hero-body {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  padding-top: var(--nav-h);
}

/* VERTICAL LABEL */
.hero-vert-label {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-vert-label span {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.vert-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .25));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: .9;
  }
}

/* HERO CONTENT */
.hero-content {
  flex: 1;
  max-width: 640px;
  padding-left: 30px;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  animation: heroIn .9s var(--ease) .3s both;
}

.hero-eyebrow i {
  color: var(--amber);
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.hero-title span {
  font-family: var(--font-display);
  line-height: .95;
  letter-spacing: 1px;
  color: var(--white);
  display: block;
}

.ht-line1 {
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  animation: heroIn .9s var(--ease) .4s both;
}

.ht-line2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--amber);
  letter-spacing: 2px;
  padding-left: 20px;
  animation: heroIn .9s var(--ease) .55s both;
}

.ht-line3 {
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  animation: heroIn .9s var(--ease) .7s both;
}

.hero-desc {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
  animation: heroIn .9s var(--ease) .85s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroIn .9s var(--ease) 1s both;
}

.hcta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--black);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  transition: var(--tr);
}

.hcta-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-amber);
  color: var(--white);
}

.hcta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  transition: var(--tr);
}

.hcta-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-pills {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: heroIn .9s var(--ease) 1.1s both;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  font-size: .76rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 30px;
}

.hero-pill i {
  color: var(--amber);
}

@media (max-width: 960px) {
  .hero-body {
    flex-direction: column;
    top: 10px;
    padding: 100px 20px;
    justify-content: flex-start;
    text-align: center;
  }

  .hero-content {
    padding-left: 0;
    max-width: 100%;
  }

  .hero-title span {
    line-height: 1.1;
  }

  .ht-line1,
  .ht-line3 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .ht-line2 {
    font-size: 1.8rem;
    padding-left: 0;
  }

  .hero-desc {
    margin: 0 auto 32px;
    font-size: 0.95rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-vert-label,
  .hero-side,
  .slide-region {
    display: none !important;
  }

  .hero-eyebrow {
    position: relative;
    top: 30px;
    left: 0;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    background: #0a0a0a;
    /* Fallback color */
  }

  .hero-body {
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .hero-title span {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .hero-search {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
    margin: 0;
  }

  .hero-eyebrow {
    position: relative;
    top: 24px;
    left: 0;
    justify-content: center;
  }

}

/* HERO SIDE (progress + controls) */
.hero-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0;
  animation: heroIn .9s var(--ease) .8s both;
}

.slide-progress {
  width: 2px;
  height: 120px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.sp-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--amber);
  border-radius: 2px;
}

.slide-nums {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, .5);
}

#slideCurrentNum {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

.sn-of {
  font-size: .7rem;
}

.sn-total {
  font-size: .85rem;
}

.slide-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slide-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: var(--tr);
}

.slide-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

/* SLIDE REGION */
.slide-region {
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .15);
  white-space: nowrap;
  pointer-events: none;
}

/* HERO SEARCH */
.hero-search {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 95%);
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow-dark-lg);
  z-index: 10;
  overflow: hidden;
}

.hs-tabs {
  display: flex;
  background: var(--black-2);
  padding: 0 4px;
  gap: 2px;
}

.hstab {
  flex: 1;
  padding: 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  transition: var(--tr);
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.hstab i {
  font-size: .9rem;
}

.hstab.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.hstab:hover {
  color: rgba(255, 255, 255, .8);
}

.hs-fields {
  display: flex;
  align-items: stretch;
  padding: 16px 20px;
  gap: 0;
}

.hs-field {
  flex: 1;
  padding: 4px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hs-field:first-child {
  padding-left: 0;
}

.hs-field label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hs-field label i {
  color: var(--amber);
}

.hs-field input,
.hs-field select {
  border: none;
  font-size: .9rem;
  color: var(--black);
  background: transparent;
  width: 100%;
  font-weight: 500;
}

.hs-field select {
  appearance: none;
  cursor: pointer;
}

.hs-sep {
  width: 1px;
  background: var(--ivory-2);
  flex-shrink: 0;
  margin: 4px 0;
}

.hs-go {
  background: var(--black);
  color: var(--white);
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
  transition: var(--tr);
  white-space: nowrap;
}

.hs-go:hover {
  background: var(--amber);
  color: var(--black);
  transform: translateY(-1px);
}

/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: var(--amber);
  overflow: hidden;
  padding: 11px 0;
  height: 42px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marqueeSlide 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--black);
}

.marquee-track i {
  color: rgba(0, 0, 0, .3);
  font-size: .5rem;
  flex-shrink: 0;
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================================================================
   NEW ABOUT SECTION (Completely Redesigned)
   ================================================================ */
.new-about-sec {
  padding: 60px 0;
  background: var(--ivory-2);
  background-color: #d4dae2a5;
  color: var(--black);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  margin-top: 80px;
}

.new-about-sec::before {
  content: "JOURNEY";
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22vw;
  color: rgba(0, 0, 0, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.new-about-container {
  /* max-width: 100%; */
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.na-content {
  flex: 1;
  max-width: 520px;
  margin-left: 25px;
}

.na-badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--amber);
  margin-bottom: 24px;
  position: relative;
  padding-left: 55px;
}

.na-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1.5px;
  background: var(--amber);
}

.na-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.na-title span {
  color: var(--amber);
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: lowercase;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  padding-left: 10px;
}

.na-desc {
  font-size: 1.05rem;
  color: rgba(13, 27, 42, 0.75);
  line-height: 1.8;
  margin-bottom: 42px;
}

.na-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.naf-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.naf-item i {
  font-size: 1.6rem;
  color: var(--amber);
  margin-top: 4px;
}

.naf-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--black);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  line-height: 1;
}

.naf-item span {
  font-size: 0.9rem;
  color: rgba(13, 27, 42, 0.65);
  line-height: 1.5;
  display: block;
}

.na-visuals {
  flex: 1.1;
  position: relative;
  height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navis-img {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-dark-lg);
}

.navis-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}

.navis-img:hover img {
  transform: scale(1.08);
}

.navis-img-1 {
  width: 340px;
  height: 480px;
  border-radius: 200px 200px 0 0;
  top: 20px;
  left: -9%;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.navis-img-2 {
  width: 340px;
  height: 480px;
  border-radius: var(--radius-lg);
  bottom: 0;
  right: 1%;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.navis-circle-text {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  z-index: 3;
  background: url('../images/circle-bg-dark.png') no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.navis-circle-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.navis-circle-text svg {
  position: absolute;
  inset: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  animation: rotateText 22s linear infinite;
  transform-origin: center;
  z-index: 2;
}

.navis-circle-text path {
  fill: none;
}

.navis-circle-text text {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  /* fill: #fff; */
  fill: var(--amber-dark);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.navis-center-icon {
  font-size: 2.2rem;
  color: var(--amber-dark);
  position: relative;
  z-index: 2;
  transition: var(--tr);
}

.navis-circle-text:hover .navis-center-icon {
  color: var(--amber);
  transform: scale(1.1);
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .new-about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 15px;
  }

  .na-content {
    max-width: 100%;
    z-index: 10;
  }

  /* ── ABOUT visuals: 2-col grid, both images always visible ── */
  .na-visuals {
    width: 100%;
    /* 2-column grid — images sit side by side like on desktop */
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 10px;
    height: auto;
    position: relative;
    margin: 0 auto;
    /* no overflow:hidden — let images breathe */
    flex: none;
  }

  /* Images: relative flow inside the grid, no absolute trickery */
  .navis-img {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
  }

  /* First image: pill-top shape, starts at the top of the grid */
  .navis-img-1 {
    border-radius: 80px 80px 0 0 !important;
    align-self: flex-start;
  }

  /* Second image: sits on the bottom baseline */
  .navis-img-2 {
    border-radius: var(--radius-lg) !important;
    align-self: flex-end;
    margin-top: 30px !important;
  }

  /* Circle badge: absolute, centered on the grid container */
  .navis-circle-text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 75px;
    height: 75px;
    z-index: 5;
    margin: 0;
  }

  .navis-circle-text text {
    font-size: 6.8px;
    letter-spacing: 1.4px;
  }

  /* SVG inset: -10px makes text sit right at the circle edge */
  .navis-circle-text svg {
    inset: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }

  .navis-center-icon {
    font-size: 1.2rem;
  }

  .na-actions {
    margin-top: 20px;
    z-index: 15;
    position: relative;
  }
}

@media (max-width: 480px) {
  .na-title {
    font-size: 2rem;
  }

  .na-title span {
    font-size: 1.8rem;
  }

  .navis-img {
    max-width: 280px;
    height: 200px !important;
  }
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--black);
  padding: 52px 0;
  margin-top: 80px;
  margin-bottom: 80px;
}

.stats-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-around;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

.stat-ico {
  color: var(--amber);
  font-size: 1.4rem;
}

.stat-n {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .07);
  flex-shrink: 0;
}

/* ================================================================
   DESTINATIONS — FULL-WIDTH HOVER GRID
   ================================================================ */
.dest-section {
  padding-top: 5px;
  overflow: hidden;
}

.dest-head {
  margin-bottom: 40px;
}

.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.dest-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-image: var(--dbg);
  background-size: cover;
  background-position: center;
  transition: var(--tr);
}

.dest-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .1) 60%, transparent 100%);
  transition: var(--tr);
  z-index: 1;
}

.dest-item:hover::before {
  background: linear-gradient(to top, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .5) 75%, rgba(255, 255, 255, .2) 100%);
}

.dest-item:hover {
  transform: scale(1.01);
  z-index: 2;
  box-shadow: var(--shadow-dark-lg);
}

.dest-lg {
  grid-row: span 2;
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  transform: translateY(0);
  transition: var(--tr);
}

.dest-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--black);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.dest-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.dest-lg .dest-info h3 {
  font-size: 3rem;
}

.dest-info p {
  color: rgba(13, 27, 42, .7);
  font-size: .86rem;
  line-height: 1.55;
  margin-bottom: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.dest-item:hover .dest-info p {
  max-height: 60px;
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0;
  transform: translateY(6px);
  transition: var(--tr) .05s;
}

.dest-item:hover .dest-link {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   DRONE VIDEO SECTION
   ================================================================ */
.video-section {
  padding: 60px 0 20px 0;
  background: var(--white);
  max-width: 1250px;
  margin: 0 auto;
}

.video-section-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

/* ── LEFT TEXT ── */
.vs-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 25px;
}

.vs-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 28px;
}

.vs-tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--slate);
  font-weight: 500;
}

.vs-tags span i {
  color: var(--amber);
  width: 16px;
  font-size: .8rem;
}

/* ── RIGHT VIDEO PLAYER ── */
.vs-player {
  position: relative;
}

.vs-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark-lg);
  background: var(--black);
  aspect-ratio: 16 / 10;
}

.vs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle dark vignette over video */
.vs-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .08) 0%,
      transparent 40%,
      transparent 60%,
      rgba(0, 0, 0, .45) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

/* ── PLAY / PAUSE BUTTON ── */
.vs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(232, 160, 32, .25);
  border: 2px solid rgba(232, 160, 32, .5);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity .3s, background .25s, transform .25s;
}

.vs-video-wrap:hover .vs-play-btn {
  opacity: 1;
}

.vs-play-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── MUTE BUTTON ── */
.vs-mute-btn {
  position: absolute;
  bottom: 52px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .25s, color .25s;
}

.vs-mute-btn:hover {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}

/* ── BOTTOM LABEL ── */
.vs-video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 6px 14px;
  border-radius: 30px;
  color: rgba(255, 255, 255, .85);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
}

/* Pulsing red live dot */
.vs-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .45;
    transform: scale(.75);
  }
}

/* ── DECORATIVE CORNER FRAME ── */
.vs-video-wrap::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  border-top: 2.5px solid var(--amber);
  border-right: 2.5px solid var(--amber);
  border-radius: 0 var(--radius-lg) 0 0;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .video-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vs-text {
    order: 2;
  }

  .vs-player {
    order: 1;
  }
}

@media (max-width: 600px) {
  .video-section {
    padding: 70px 0;
  }

  .video-section-inner {
    padding: 0 20px;
    gap: 36px;
  }

  .vs-play-btn {
    opacity: 1;
  }
}

/* ================================================================
   HOMESTAY SECTION
   ================================================================ */
.homestay-section {
  position: relative;
  padding: 110px 0;
  background: var(--white);
  overflow: hidden;
}

.hs-diagonal-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1510798831971-661eb04b3739?w=1600&q=10') center/cover no-repeat;
  opacity: .05;
}

/* Diagonal top cutout */
.homestay-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ivory-2);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 1;
}

.homestay-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ivory);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.homestay-section .container {
  position: relative;
  z-index: 2;
}

.hs-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hs-mosaic {
  position: relative;
}

.hsm-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hsm-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.hsm-main:hover img {
  transform: scale(1.04);
}

.hsm-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.hsm-small-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .5s var(--ease);
}

.hsm-small-grid img:hover {
  transform: scale(1.04);
}

.hsm-badge {
  position: absolute;
  top: 24px;
  right: 10px;
  background: var(--amber);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-amber-lg);
}

.hsm-badge i {
  font-size: 1.3rem;
  color: var(--black);
}

.hsm-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--black);
  line-height: 1;
}

.hsm-badge span {
  display: block;
  font-size: .68rem;
  color: rgba(0, 0, 0, .6);
  font-weight: 600;
}

/* .hs-text { } */
.hs-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
}

.hs-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(13, 27, 42, .75);
  font-size: .92rem;
}

.hs-perks li i {
  color: var(--amber);
  width: 16px;
}

.hs-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================================================================
   WHY CHOOSE US — HIMALAYAN SHOWCASE
   ================================================================ */
.why-section {
  position: relative;
  padding: 40px 0 100px;
  overflow: hidden;
}

/* Full-bleed parallax-style background */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Dark overlay on top of the background image — just like hero-overlay */
.why-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(10, 10, 10, .85) 0%,
      rgba(10, 10, 10, .65) 50%,
      rgba(10, 10, 10, .45) 100%);
  pointer-events: none;
}

/* Container must sit above both ::before and ::after */
.why-section>.container {
  position: relative;
  z-index: 2;
}

/* Container above background */
.why-section>.container {
  position: relative;
  z-index: 2;
}

/* ── TOP ROW: heading + lead ── */
.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232, 160, 32, .2);
}

/* .why-top-left { } */
.why-top-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  padding-bottom: 6px;
}

.why-top-right p {
  color: rgb(255, 255, 255);
  font-size: .97rem;
  line-height: 1.82;
}

/* ── CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* Added space between cards */
  border: none;
  /* Removed the outer border */
  border-radius: 0;
  /* Removed since cards will have their own radius */
  overflow: visible;
  /* Allow hover effects/shadows to show */
}

.why-card {
  padding: 40px 30px;
  /* Darker background with a blur effect */
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);

  /* Individual card styling */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;

  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

/* Make it pop on hover */
.why-card:hover {
  background: rgba(20, 20, 20, 0.9);
  transform: translateY(-10px);
  /* Lift the card up */
  border-color: var(--amber);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-card:last-child {
  border-right: none;
}

/* .why-card:hover {
  background: rgba(232, 160, 32, .1);
} */

/* Top row: icon + number */
.wc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Icon box */
.wc-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(232, 160, 32, .12);
  border: 1px solid rgba(232, 160, 32, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.2rem;
  transition: var(--tr);
  flex-shrink: 0;
}

.why-card:hover .wc-ico {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(232, 160, 32, .35);
}

/* Ghost number */
.wc-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, .07);
  line-height: 1;
  letter-spacing: -1px;
  transition: var(--tr);
  align-self: flex-start;
}

.why-card:hover .wc-num {
  color: rgba(232, 160, 32, .2);
}

/* Amber divider line */
.wc-divider {
  width: 32px;
  height: 2px;
  background: rgba(232, 160, 32, .35);
  border-radius: 2px;
  margin-bottom: 18px;
  transition: width .3s var(--ease);
}

.why-card:hover .wc-divider {
  width: 56px;
  background: var(--amber);
}

/* Body text */
.wc-body {
  flex: 1;
}

.wc-body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .5px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.wc-body p {
  color: rgba(255, 255, 255, 0.8);
  /* Increased from .5 */
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Arrow — reveals on hover */
.wc-arrow {
  margin-top: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 32, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 160, 32, .5);
  font-size: .78rem;
  transform: translateX(-4px);
  opacity: 0;
  transition: var(--tr);
}

.why-card:hover .wc-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--amber);
  border-color: var(--amber);
  background: rgba(232, 160, 32, .08);
}

/* ── RESPONSIVE ── */
/* ── TABLET VIEW (2x2 Grid) ── */
@media (max-width: 1024px) {
  .why-top {
    grid-template-columns: 1fr;
    /* Stack header text vertically */
    gap: 30px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns, 2 rows */
    gap: 15px;
    /* Slightly tighter gap for tablets */
  }

  .why-card {
    padding: 30px 20px;
    /* Adjust padding for smaller screens */
  }
}

/* ── MOBILE VIEW (1x1 Stack) ── */
@media (max-width: 650px) {
  .why-section {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    /* Single column stack */
    gap: 20px;
  }

  .wc-num {
    font-size: 2.2rem;
    /* Shrink the ghost number so it doesn't crowd text */
  }

  .why-top-right p {
    font-size: 0.9rem;
  }
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, .85), transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
  opacity: 0;
  transition: var(--tr);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
}

.gallery-overlay i {
  color: var(--amber);
  font-size: 1.1rem;
}

.gal-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px;
  color: var(--slate);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

#lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--tr);
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  transform: none;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

/* ================================================================
   TESTIMONIALS — REDESIGNED
   ================================================================ */
.testi-section {
  padding: 40px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Background diagonal pattern */
.testi-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(79, 172, 254, .04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(79, 172, 254, .04) 25%, transparent 25%),
    linear-gradient(315deg, rgba(79, 172, 254, .04) 25%, transparent 25%),
    linear-gradient(45deg, rgba(79, 172, 254, .04) 25%, transparent 25%);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── SECTION HEADER ── */
.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.testi-header-left .sec-title {
  margin-bottom: 0;
}

.testi-rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 18px 24px;
  backdrop-filter: blur(10px);
}

.trb-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 3px;
}

.trb-score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.trb-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.trb-label span {
  color: rgba(255, 255, 255, .35);
  font-size: .7rem;
}

/* ── MAIN LAYOUT ── */
.testi-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin-bottom: 60px;
  align-items: stretch;
}

/* ── FEATURED CARD ── */
.testi-featured {
  background: linear-gradient(135deg, rgba(5, 33, 58, .9), rgba(13, 27, 42, .95));
  border: 1px solid rgba(79, 172, 254, .15);
  border-radius: var(--radius-lg);
  padding: 52px 52px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testi-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
}

.tf-quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: .7;
  color: rgba(79, 172, 254, .12);
  position: absolute;
  top: 28px;
  right: 36px;
  pointer-events: none;
  font-style: italic;
}

.tf-stars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.tf-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .92);
  font-weight: 300;
  flex: 1;
  margin-bottom: 36px;
  transition: opacity .35s var(--ease);
}

.tf-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tf-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
  transition: opacity .35s var(--ease);
}

.tf-author h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 3px;
}

.tf-author span {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

.tf-index {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .25);
  letter-spacing: 1px;
}

.tf-progress {
  height: 2px;
  background: rgba(255, 255, 255, .08);
  border-radius: 2px;
  margin: 28px 0 20px;
  overflow: hidden;
}

.tf-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
  border-radius: 2px;
  transition: width .6s var(--ease);
}

.tf-controls {
  display: flex;
  gap: 10px;
}

.tf-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
}

.tf-btn:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--black);
}

/* ── SIDE STACK ── */
.testi-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ts-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.ts-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--amber);
  transform: scaleY(0);
  transition: transform .3s var(--ease);
  border-radius: 0 2px 2px 0;
}

.ts-card.active {
  background: rgba(79, 172, 254, .08);
  border-color: rgba(79, 172, 254, .2);
}

.ts-card.active::before {
  transform: scaleY(1);
}

.ts-card:hover {
  background: rgba(79, 172, 254, .06);
  border-color: rgba(79, 172, 254, .15);
  transform: translateX(4px);
}

.ts-card-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.ts-card-inner img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(79, 172, 254, .3);
  flex-shrink: 0;
}

.ts-card-inner h6 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.ts-card-inner span {
  font-size: .7rem;
  color: var(--amber);
  letter-spacing: .5px;
}

.ts-card-inner p {
  font-size: .76rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5;
  margin-top: 4px;
  font-style: italic;
}

.ts-stars {
  font-size: .75rem;
  color: var(--amber);
  letter-spacing: 2px;
}

/* ── FEEDBACK FORM ── */
.testi-feedback {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(5, 33, 58, .6), rgba(13, 27, 42, .8));
  border: 1px solid rgba(79, 172, 254, .12);
  border-radius: var(--radius-lg);
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.testi-feedback::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.tfb-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .5px;
  margin: 10px 0 16px;
}

.tfb-title em {
  font-style: normal;
  color: var(--amber);
}

.tfb-desc {
  color: rgba(255, 255, 255, .55);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.tfb-stats {
  display: flex;
  gap: 28px;
}

.tfbs-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
  letter-spacing: .5px;
  line-height: 1;
}

.tfbs-item span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Form */
.tfb-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tfb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tfb-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tfb-field label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.tfb-field input,
.tfb-field textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: .9rem;
  font-family: var(--font-body);
  transition: border-color .25s, background .25s;
  resize: none;
}

.tfb-field input::placeholder,
.tfb-field textarea::placeholder {
  color: rgba(255, 255, 255, .25);
}

.tfb-field input:focus,
.tfb-field textarea:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, .09);
  outline: none;
}

/* Star selector */
.tfb-star-select {
  display: flex;
  gap: 6px;
}

.tfb-star-select span {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: color .2s, transform .2s;
  line-height: 1;
}

.tfb-star-select span.lit {
  color: var(--amber);
  transform: scale(1.15);
}

.tfb-star-select span:hover {
  transform: scale(1.2);
}

/* Submit button */
.tfb-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amber);
  color: var(--black);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}

.tfb-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  z-index: 0;
}

.tfb-submit:hover::after {
  transform: scaleX(1);
}

.tfb-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
  color: var(--white);
}

.tfb-submit>* {
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .testi-main {
    grid-template-columns: 1fr;
  }

  .testi-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ts-card {
    flex: 1 1 45%;
  }

  .testi-feedback {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .testi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .testi-section {
    padding: 80px 0;
  }

  .testi-featured {
    padding: 32px 24px 28px;
  }

  .tf-text {
    font-size: 1.1rem;
  }

  .testi-feedback {
    padding: 32px 24px;
  }

  .tfb-row {
    grid-template-columns: 1fr;
  }

  .ts-card {
    flex: 1 1 100%;
  }
}

/* ================================================================
   BLOG
   ================================================================ */
.blog-section {
  padding: 100px 0;
  background: var(--ivory);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ivory-2);
  transition: transform .32s var(--ease), box-shadow .32s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-dark-lg);
  border-color: transparent;
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--black);
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: .75rem;
  color: var(--slate);
  margin-bottom: 9px;
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .3px;
  margin-bottom: 9px;
  line-height: 1.2;
}

.blog-body p {
  font-size: .86rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 14px;
}

.blog-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--amber);
  transition: var(--tr);
}

.blog-link:hover {
  gap: 12px;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amber) 0%, var(--black-3) 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=15') center/cover no-repeat;
  opacity: .15;
}

.cta-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1650px;
  margin: 0 auto;
}

.cta-kicker {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 6px 16px;
  border-radius: 30px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.cta-title em {
  color: var(--ivory-2);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--amber-dark);
}

.cta-banner>.container>p {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  max-width: 1650px;
  margin: 0 auto 36px;
}

.cta-inner p {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  max-width: 1650px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER — NAVY PATTERN REDESIGN
   ================================================================ */

.footer {
  display: none !important;
}

.footer-navy {
  position: relative;
  background-color: #05213a;
  overflow: hidden;
}

/* ── GEOMETRIC PATTERN OVERLAY ── */
.fn-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 20 L20 0 L40 20 L20 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.3'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

/* ── TOP CONTENT AREA ── */
.fn-top {
  position: relative;
  z-index: 1;
  padding: 60px 40px 40px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ── LOGO ── */
.fn-logo-wrap {
  margin-bottom: 40px;
}

.fn-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.fn-logo-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05213a;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.fn-logo-text {
  text-align: left;
}

.fn-logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #ffffff;
  /* full white — was #ffffff but fine */
  line-height: 1;
  font-weight: 700;
}

.fn-logo-text em {
  display: block;
  font-style: normal;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  /* amber — already good */
  margin-top: 4px;
  font-weight: 600;
}

.fn-logo-text span {
  display: block;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  /* was .35 — much more visible */
  margin-top: 2px;
}

/* ── HORIZONTAL RULE ── */
.fn-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .25);
  /* was .12 — more visible */
  margin: 28px 0;
}

/* ── NAV LINKS (pipe-separated) ── */
.fn-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 12px;
}

.fn-nav a {
  font-size: .76rem;
  /* slightly larger */
  font-weight: 600;
  /* was 400 — now bold */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
  /* was .75 — near full white */
  text-decoration: none;
  padding: 4px 10px;
  transition: color .25s;
}

.fn-nav a:hover {
  color: var(--amber);
}

.fn-nav-2 a {
  color: rgba(255, 255, 255, .75);
  /* was .45 — much more readable */
  font-size: .68rem;
  font-weight: 500;
  /* added weight */
}

.fn-pipe {
  color: rgba(255, 255, 255, .45);
  /* was .2 — more visible dividers */
  font-size: .8rem;
  user-select: none;
  padding: 0 2px;
}

/* ── CONTACT ── */
.fn-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.fn-contact p {
  color: rgba(255, 255, 255, .9);
  /* was .65 — much clearer */
  font-size: .92rem;
  /* slightly larger */
  font-weight: 500;
  /* added weight */
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.fn-contact a {
  color: #ffffff;
  /* was .75 — full white */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  /* added weight */
  transition: color .25s;
}

.fn-contact a:hover {
  color: var(--amber);
}

.fn-contact i {
  color: var(--amber);
}

.fn-sep-v {
  color: rgba(255, 255, 255, .45);
  /* was .2 */
  padding: 0 6px;
}

/* ── SOCIAL BUTTONS ── */
.fn-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.fn-soc-btn {
  width: 48px;
  /* slightly larger */
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  /* slightly larger icon */
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
  /* added shadow for lift */
}

.fn-soc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
}

.fn-fb {
  background: #1877f2;
}

.fn-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.fn-yt {
  background: #ff0000;
}

.fn-wa {
  background: #25d366;
}

/* ── BOTTOM BAR ── */
.fn-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, .35);
  /* slightly darker for contrast */
  border-top: 1px solid rgba(255, 255, 255, .15);
  /* was .08 */
  padding: 16px 40px;
}

.fn-bottom-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.fn-bottom-inner p {
  font-size: .82rem;
  /* slightly larger */
  color: rgba(255, 255, 255, .8);
  /* was .55 — much clearer */
  font-weight: 500;
  /* added weight */
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .fn-top {
    padding: 40px 24px 30px;
  }

  .fn-logo {
    flex-direction: column;
    text-align: center;
  }

  .fn-logo-text {
    text-align: center;
  }

  .fn-contact p {
    flex-direction: column;
    gap: 6px;
  }

  .fn-sep-v {
    display: none;
  }

  .fn-bottom {
    padding: 16px 24px;
  }

  .fn-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================================================
   FLOATING BUTTONS
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-dark);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: var(--tr);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--amber);
  color: var(--black);
  transform: translateY(-3px);
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  z-index: 900;
  transition: var(--tr);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.1);
}

.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--black);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: .86rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
  z-index: 10000;
  box-shadow: var(--shadow-dark);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ================================================================
   INNER PAGE STYLES (for all other pages)
   ================================================================ */
.page-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, .78), rgba(10, 10, 10, .45));
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 2px;
  margin: 12px 0 18px;
  line-height: 1;
}

.banner-content h1 em {
  color: var(--amber);
  font-style: normal;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .65);
}

.breadcrumb a {
  color: var(--amber);
  font-weight: 600;
}

.breadcrumb i {
  font-size: .6rem;
  color: rgba(255, 255, 255, .35);
}

/* Booking */
.booking-bg {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.booking-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1400&q=10') center/cover no-repeat;
  opacity: .04;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.booking-info .sec-title {
  color: #fff;
}

.booking-info p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 24px;
}

.booking-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-dark-lg);
}

.booking-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .5px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-form-card h3 i {
  color: var(--amber);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group label i {
  color: var(--amber);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ivory-2);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--black);
  transition: var(--tr);
  background: #fff;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23888' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--black);
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 700;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.form-success {
  background: #f0fdf4;
  color: #166534;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Contact */
.contact-section {
  padding: 100px 0;
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  border: 1px solid var(--ivory-2);
  transition: var(--tr);
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-dark);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--amber-pale);
  border: 1px solid rgba(232, 160, 32, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1rem;
}

.contact-card h4 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: .9rem;
}

.contact-card p {
  font-size: .86rem;
  color: var(--slate);
  line-height: 1.6;
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-dark);
}

/* Gallery full */
.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 10px;
}

.gallery-grid-full .gallery-item.large {
  grid-column: span 2;
}

/* Blog full */
.blog-grid-full {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.blog-grid-full .blog-card.featured {
  grid-row: span 2;
}

.blog-grid-full .blog-card.featured .blog-img img {
  height: 100%;
  min-height: 320px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  border: 1px solid var(--ivory-2);
  transition: var(--tr);
}

.faq-item:hover {
  box-shadow: var(--shadow-dark);
  transform: translateY(-2px);
}

.faq-q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: .3px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-q i {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 3px;
}

.faq-item p {
  color: var(--slate);
  font-size: .87rem;
  line-height: 1.7;
  padding-left: 22px;
}

/* MV */
.mv-section {
  padding: 100px 0;
  background: var(--ivory);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--ivory-2);
  transition: var(--tr);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-dark);
}

.mv-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.7rem;
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--slate);
  font-size: .88rem;
  line-height: 1.7;
}

/* Team */
.team-section {
  padding: 100px 0;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ivory-2);
  transition: var(--tr);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark-lg);
}

.team-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  transition: transform .5s;
}

.team-card:hover .team-img img {
  transform: scale(1.06);
}

.team-info {
  padding: 22px 18px;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .5px;
  margin-bottom: 3px;
}

.team-info .team-role {
  font-size: .72rem;
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-info p {
  color: var(--slate);
  font-size: .84rem;
  line-height: 1.6;
  margin: 10px 0 14px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: .8rem;
  transition: var(--tr);
}

.team-social a:hover {
  background: var(--amber);
  color: var(--black);
}

/* AOS */
[data-aos] {
  transition-timing-function: var(--ease) !important;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero-body {
    padding: 0 32px;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }

  .dest-lg {
    grid-row: span 1;
    grid-column: span 2;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .top-ribbon {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-call {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    padding: 90px 28px 40px;
    display: flex;
    flex-direction: column;
    transition: right .38s var(--ease);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .5);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }

  .nav-link {
    color: rgba(255, 255, 255, .75) !important;
    font-size: 1rem;
    padding: 11px 8px;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--amber) !important;
  }

  .nav-link::after {
    display: none;
  }

  .mega-drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, .04);
    width: 100%;
    border: none;
    padding: 8px 0;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 4px;
  }

  .mega-col a {
    color: rgba(255, 255, 255, .55) !important;
  }

  .mega-col a:hover {
    background: rgba(255, 255, 255, .06) !important;
    color: var(--amber) !important;
  }

  .mega-promo {
    display: none;
  }

  .hero-body {
    padding: 0 20px 0 44px;
  }

  .hero-side {
    display: none;
  }

  .hs-fields {
    flex-wrap: wrap;
  }

  .hs-field {
    flex: 1 1 45%;
    padding: 8px 14px;
  }

  .hs-sep {
    display: none;
  }

  .hs-go {
    width: 100%;
    margin: 6px 0 0;
    padding: 14px;
    justify-content: center;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .av-float {
    display: none;
  }

  .hs-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .homestay-section::before,
  .homestay-section::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid-full {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid-full .blog-card.featured {
    grid-column: span 2;
  }

  .gallery-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid-full .gallery-item.large {
    grid-column: span 2;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-div {
    display: none;
  }

  .stat-block {
    flex: 1 1 40%;
  }
}

@media (max-width: 600px) {

  .hero-title .ht-line1,
  .hero-title .ht-line3 {
    font-size: 3.5rem;
  }

  .hero-body {
    padding: 30px 14px 0 36px;
  }

  .hero-vert-label {
    left: 8px;
  }

  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }

  .dest-lg {
    grid-column: span 1;
  }

  .packages-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .blog-grid-full {
    grid-template-columns: 1fr !important;
  }

  .blog-card.featured,
  .blog-grid-full .blog-card.featured {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .mv-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid-full {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid-full .gallery-item.large {
    grid-column: 1;
  }

  .hs-fields {
    padding: 12px;
  }

  .hs-field {
    flex: 1 1 100%;
  }

  .cta-title {
    font-size: 2.8rem;
  }
}

/* ================================================================
   ABOUT PAGE — PAGE-SPECIFIC STYLES
   ================================================================ */

/* ── PAGE BANNER ── */
.about-banner {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-banner-bg {
  position: absolute;
  inset: 0;
}

.about-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, .3) 0%,
      rgba(10, 10, 10, .65) 60%,
      rgba(10, 10, 10, .92) 100%);
}

.about-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 0 60px;
  width: 100%;
  left: 40px;
}

.about-banner-content .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
}

.about-banner-content .breadcrumb a {
  color: var(--amber);
  font-weight: 600;
  transition: var(--tr);
}

.about-banner-content .breadcrumb a:hover {
  color: #fff;
}

.about-banner-content .breadcrumb i {
  font-size: .55rem;
  color: rgba(255, 255, 255, .3);
}

.about-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.about-banner-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.about-banner-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: var(--white);
  line-height: .95;
  letter-spacing: 1px;
}

.about-banner-h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--amber);
  font-size: .75em;
  letter-spacing: 2px;
}

/* ── STORY SECTION ── */

/* ── TIMELINE ── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ivory-3);
  padding-top: 48px;
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 25%;
  height: 2px;
  background: var(--amber);
}

.tl-item {
  padding: 0 28px 0 0;
  border-right: 1px solid var(--ivory-3);
  position: relative;
}

.tl-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 28px;
}

.tl-item:nth-child(2),
.tl-item:nth-child(3) {
  padding: 0 28px;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  background: var(--ivory);
  position: absolute;
  top: -55px;
  left: -7px;
  transition: var(--tr);
}

.tl-item:last-child .tl-dot {
  left: 21px;
}

.tl-item:nth-child(2) .tl-dot,
.tl-item:nth-child(3) .tl-dot {
  left: 21px;
}

.tl-item:hover .tl-dot {
  background: var(--amber);
  transform: scale(1.3);
}

.tl-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--amber);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
}

.tl-item h4 {
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--black);
}

.tl-item p {
  color: var(--slate);
  font-size: .83rem;
  line-height: 1.65;
}

/* ── WHO WE ARE ── */
.who-section {
  padding: 70px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.who-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, .02);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.who-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 260px 220px;
  gap: 12px;
}

.who-img {
  overflow: hidden;
  border-radius: var(--radius);
}

.who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}

.who-img:hover img {
  transform: scale(1.06);
}

.who-img-tall {
  grid-row: span 2;
}

.who-rating {
  grid-column: 2;
  background: var(--amber);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 20px;
}

.who-rating i {
  font-size: 1.6rem;
  color: var(--black);
}

.who-rating strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
  line-height: 1;
}

.who-rating span {
  font-size: .68rem;
  color: rgba(0, 0, 0, .65);
  font-weight: 700;
  letter-spacing: .5px;
}

.who-body {
  color: rgba(255, 255, 255, .6);
  font-size: .97rem;
  line-height: 1.88;
  margin-bottom: 36px;
}

.who-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.who-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  transition: var(--tr);
}

.who-feat:hover {
  border-color: rgba(232, 160, 32, .25);
  background: rgba(232, 160, 32, .06);
  transform: translateX(5px);
}

.who-feat-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(232, 160, 32, .12);
  border: 1px solid rgba(232, 160, 32, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: .95rem;
  transition: var(--tr);
}

.who-feat:hover .who-feat-ico {
  background: var(--amber);
  color: var(--black);
}

.who-feat h4 {
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 3px;
}

.who-feat p {
  color: rgba(255, 255, 255, .45);
  font-size: .82rem;
  line-height: 1.5;
}

/* ── MISSION / VISION / PROMISE ── */
.mvp-section {
  padding: 120px 0;
  background: var(--ivory-2);
  position: relative;
  overflow: hidden;
}

.mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.mvp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  cursor: default;
  transition: var(--tr);
}

.mvp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-dark-lg);
}

.mvp-card-bg {
  position: absolute;
  inset: 0;
}

.mvp-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.45) saturate(.8);
  transition: filter .5s var(--ease);
}

.mvp-card:hover .mvp-card-bg img {
  filter: brightness(.55) saturate(.9);
}

.mvp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .2) 65%, transparent 100%);
  transition: var(--tr);
}

.mvp-card:hover .mvp-card-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .35) 70%, transparent 100%);
}

.mvp-card-content {
  position: relative;
  z-index: 2;
}

.mvp-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: var(--tr);
}

.mvp-card:hover .mvp-ico {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(232, 160, 32, .4);
}

.mvp-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.mvp-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1;
  margin-bottom: 14px;
}

.mvp-card p {
  color: rgba(255, 255, 255, .65);
  font-size: .86rem;
  line-height: 1.72;
}

.mvp-card-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

/* ── TEAM ── */
.about-team-section {
  padding: 120px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.about-team-section::before {
  content: 'TEAM';
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 20vw;
  color: rgba(0, 0, 0, .025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.team-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.team-card-about {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ivory-2);
  transition: var(--tr);
  position: relative;
}

.team-card-about:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark-lg);
  border-color: transparent;
}

.tca-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.tca-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .6s var(--ease);
}

.team-card-about:hover .tca-img img {
  transform: scale(1.07);
}

.tca-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, .8), transparent 50%);
  opacity: 0;
  transition: var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.team-card-about:hover .tca-overlay {
  opacity: 1;
}

.tca-socials {
  display: flex;
  gap: 8px;
}

.tca-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .78rem;
  transition: var(--tr);
}

.tca-socials a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

.tca-body {
  padding: 22px 20px 24px;
}

.tca-role {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.tca-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .5px;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.1;
}

.tca-body p {
  font-size: .84rem;
  color: var(--slate);
  line-height: 1.65;
}

.tca-divider {
  width: 32px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  margin: 12px 0;
  transition: width .3s var(--ease);
}

.team-card-about:hover .tca-divider {
  width: 56px;
}

/* ── ABOUT PAGE RESPONSIVE ── */
@media (max-width: 1000px) {
  .timeline {
    grid-template-columns: 1fr 1fr;
    border-top: none;
    padding-top: 0;
    gap: 32px;
  }

  .timeline::before {
    display: none;
  }

  .tl-item,
  .tl-item:last-child,
  .tl-item:nth-child(2),
  .tl-item:nth-child(3) {
    padding: 0;
    border-right: none;
    border-left: 3px solid var(--amber);
    padding-left: 20px;
  }

  .tl-dot {
    display: none;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .who-mosaic {
    grid-template-rows: 240px 200px;
  }

  .mvp-grid {
    grid-template-columns: 1fr;
  }

  .mvp-card {
    min-height: 340px;
  }

  .team-grid-about {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-banner {
    height: 380px;
  }

  .about-banner-h1 {
    font-size: 3rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .who-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 220px 120px;
  }

  .who-img-tall {
    grid-row: span 1;
  }

  .who-rating {
    flex-direction: row;
    gap: 14px;
    padding: 16px;
  }

  .team-grid-about {
    grid-template-columns: 1fr;
  }

  .about-team-section {
    padding: 80px 0;
  }

  .mvp-section {
    padding: 80px 0;
  }

  .who-section {
    padding: 80px 0;
  }
}


/* ================================================================
     PACKAGES PAGE — SPECIFIC STYLES
     ================================================================ */

/* ── HERO BANNER ── */
.pkg-hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pkg-hero-bg {
  position: absolute;
  inset: 0;
}

.pkg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 33, 58, .2) 0%,
      rgba(5, 33, 58, .55) 50%,
      rgba(5, 33, 58, .95) 100%);
}

/* Geometric pattern overlay on hero */
.pkg-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.06;
  pointer-events: none;
}

.pkg-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 130px 40px;
}

.pkg-hero-content .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.pkg-hero-left {
  left: 40px;
}

.pkg-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.pkg-hero-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.pkg-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px;
}

.pkg-hero-breadcrumb a {
  color: var(--amber);
  font-weight: 600;
  transition: var(--tr);
}

.pkg-hero-breadcrumb a:hover {
  color: #fff;
}

.pkg-hero-breadcrumb i {
  font-size: .55rem;
  color: rgba(255, 255, 255, .3);
}

.pkg-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  color: var(--white);
  line-height: .95;
  letter-spacing: 1px;
}

.pkg-hero-h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--amber);
  font-size: .75em;
  letter-spacing: 2px;
}

.pkg-hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
  margin-right: 40px;
}

.pkg-hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  padding: 18px 28px;
  border-radius: 12px;
}

.phs-item {
  text-align: center;
}

.phs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
  letter-spacing: 1px;
}

.phs-lbl {
  display: block;
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

.phs-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
}

/* ── FILTER BAR ── */
.pkg-filter-bar {
  position: static;
  top: 70px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ivory-3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.pkg-filter-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.pkg-filter-inner::-webkit-scrollbar {
  display: none;
}

.pkg-filter-group {
  display: flex;
  align-items: center;
  gap: 0;
  border-right: 1px solid var(--ivory-3);
  padding: 0 24px;
  flex-shrink: 0;
}

.pkg-filter-group:first-child {
  padding-left: 0;
}

.pkg-filter-group:last-child {
  border-right: none;
}

.pkg-filter-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-right: 12px;
  flex-shrink: 0;
}

.pkg-filter-tabs {
  display: flex;
  gap: 2px;
}

.pft {
  padding: 16px 14px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--slate);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}

.pft:hover {
  color: var(--black);
}

.pft.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.pkg-result-count {
  margin-left: auto;
  flex-shrink: 0;
  font-size: .76rem;
  color: var(--slate);
  padding: 0 0 0 24px;
  white-space: nowrap;
}

.pkg-result-count strong {
  color: var(--black);
}

/* ── PACKAGES MAIN LAYOUT ── */
.pkg-main {
  padding: 60px 0 100px;
  background: var(--ivory-2);
}

/* ── FEATURED STRIP (top 2 highlighted packages) ── */
.pkg-featured-strip {
  margin-bottom: 60px;
}

.pkg-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.pkg-section-label span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
}

.pkg-section-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--amber);
}

.pkg-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ivory-3);
}

.pkg-featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

/* ── PACKAGE CARD — STANDARD ── */
.pkg-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ivory-3);
  transition: transform .35s cubic-bezier(.22, .61, .36, 1),
    box-shadow .35s cubic-bezier(.22, .61, .36, 1),
    border-color .35s;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(13, 27, 42, .15);
  border-color: transparent;
}

/* Featured card (large) */
.pkg-card.featured {
  display: flex;
  flex-direction: column;
}

.pkg-card.featured .pkg-card-img {
  flex: 1 1 auto;
  min-height: 260px;
}

/* Standard card */
.pkg-card.standard .pkg-card-img {
  flex: 1 1 auto;
  min-height: 200px;
}

.pkg-card-img {
  position: relative;
  overflow: hidden;
}

.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.pkg-card:hover .pkg-card-img img {
  transform: scale(1.08);
}

/* Top badges */
.pkg-card-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pkg-badge.bestseller {
  background: var(--amber);
  color: var(--black);
}

.pkg-badge.new {
  background: #22c55e;
  color: #fff;
}

.pkg-badge.limited {
  background: #ef4444;
  color: #fff;
}

.pkg-badge.exclusive {
  background: var(--black);
  color: var(--amber);
  border: 1px solid var(--amber);
}

/* Wishlist */
.pkg-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: .85rem;
  border: none;
  cursor: pointer;
  transition: var(--tr);
}

.pkg-wishlist:hover {
  color: #ef4444;
  background: #fff;
  transform: scale(1.1);
}

.pkg-wishlist.active {
  color: #ef4444;
}

/* Overlay gradient */
.pkg-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 33, 58, .7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
}

.pkg-card:hover .pkg-card-img::after {
  opacity: 1;
}

/* Quick view button */
.pkg-quick-view {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--amber);
  color: var(--black);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  z-index: 2;
}

.pkg-card:hover .pkg-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Card body */
.pkg-card-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.pkg-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  color: var(--slate);
}

.pkg-meta-item i {
  color: var(--amber);
  font-size: .68rem;
}

.pkg-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .5px;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 8px;
}

.pkg-card.featured .pkg-card-title {
  font-size: 1.7rem;
}

.pkg-card-desc {
  font-size: .84rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Highlights */
.pkg-highlights {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pkg-hl {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--ivory-2);
  color: var(--black-3);
  border: 1px solid var(--ivory-3);
}

/* Card footer */
.pkg-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "price rating"
    "button button";
  gap: 12px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--ivory-3);
}

.pkg-price-wrap {
  grid-area: price;
}

.pkg-rating {
  grid-area: rating;
  justify-self: end;
}

.btn-book-container {
  grid-area: button;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.pkg-book-btn {
  grid-area: button;
  justify-self: center;
  margin-top: 8px;
}

/* .pkg-price-wrap {} */
.pkg-price-from {
  font-size: .65rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: block;
  margin-bottom: 1px;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
  letter-spacing: .5px;
  line-height: 1;
}

.pkg-price-per {
  font-size: .68rem;
  color: var(--slate);
  margin-left: 2px;
}

.pkg-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
}

.pkg-rating-stars {
  color: var(--amber);
  letter-spacing: 1px;
  font-size: .8rem;
}

.pkg-rating-count {
  color: var(--slate);
}

.pkg-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .3px;
  transition: var(--tr);
  white-space: nowrap;
  text-decoration: none;
}

.pkg-book-btn:hover {
  background: var(--amber);
  color: var(--black);
  transform: translateY(-1px);
}

/* ── ALL PACKAGES GRID ── */
.pkg-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── DESTINATION SECTION DIVIDERS ── */
.pkg-dest-section {
  margin-bottom: 56px;
}

.pkg-dest-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px 28px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.pkg-dest-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35) saturate(.7);
  z-index: 0;
}

.pkg-dest-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 33, 58, .95) 0%, rgba(5, 33, 58, .7) 100%);
  z-index: 1;
}

.pkg-dest-header>* {
  position: relative;
  z-index: 2;
}

.pkg-dest-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pkg-dest-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

.pkg-dest-info p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

.pkg-dest-count {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255, 255, 255, .15);
  letter-spacing: -1px;
  line-height: 1;
}

/* Background images per destination */
.pkg-dest-header.darjeeling::before {
  background-image: url('https://images.unsplash.com/photo-1567529692333-de9fd6772897?w=800&q=60');
}

.pkg-dest-header.sikkim::before {
  background-image: url('https://images.unsplash.com/photo-1586348943529-beaae6c28db9?w=800&q=60');
}

.pkg-dest-header.bhutan::before {
  background-image: url('https://images.unsplash.com/photo-1548013146-72479768bada?w=800&q=60');
}

.pkg-dest-header.dooars::before {
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=800&q=60');
}

.pkg-dest-header.northeast::before {
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=800&q=60');
}

.pkg-dest-header.adventure::before {
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=800&q=60');
}

.pkg-dest-header.cultural::before {
  background-image: url('https://images.unsplash.com/photo-1539367628448-4bc5c9d171c8?w=800&q=60');
}

.pkg-dest-header.wildlife::before {
  background-image: url('https://images.unsplash.com/photo-1549366021-9f761d450615?w=800&q=60');
}

.pkg-dest-header.luxury::before {
  background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=800&q=60');
}

/* ── NO RESULTS ── */
.pkg-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  display: none;
}

.pkg-no-results i {
  font-size: 3rem;
  color: var(--slate-light);
  margin-bottom: 16px;
  display: block;
}

.pkg-no-results h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 8px;
}

.pkg-no-results p {
  color: var(--slate);
}

/* ── CTA STRIP ── */
.pkg-cta-strip {
  margin-top: 60px;
  margin-bottom: 60px;
  background: var(--black);
  border-radius: 20px;
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.pkg-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .05;
  pointer-events: none;
}

.pkg-cta-strip>* {
  position: relative;
  z-index: 1;
}

.pkg-cta-text p {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.pkg-cta-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.1;
}

.pkg-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ── HIDDEN (filter) ── */
.pkg-card[data-hidden="true"] {
  display: none !important;
}

.pkg-dest-section[data-hidden="true"] {
  display: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .pkg-featured-grid {
    grid-template-columns: 1fr;
  }

  .pkg-card.featured .pkg-card-img {
    min-height: 220px;
  }

  .pkg-all-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-hero-content {
    padding: 130px 20px 60px;
  }

  .pkg-hero-content .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .pkg-hero-right {
    align-items: flex-start;
  }

  .pkg-cta-strip {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }

  .pkg-cta-btns {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .pkg-all-grid {
    grid-template-columns: 1fr;
  }

  .pkg-filter-group {
    padding: 0 14px;
  }

  .pkg-hero {
    height: 480px;
  }

  .pkg-hero-stats {
    gap: 10px;
    padding: 14px 18px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 12px;
  }

  .pkg-hero-right {
    width: 100%;
  }

  .phs-item {
    padding: 0 5px;
  }

  .phs-num {
    font-size: 1.4rem;
  }

  .phs-lbl {
    font-size: .65rem;
  }

  .pkg-dest-header {
    padding: 14px 18px;
    gap: 12px;
    border-radius: 10px;
  }

  .pkg-dest-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border-radius: 8px;
  }

  .pkg-dest-info h3 {
    font-size: 1.3rem;
  }

  .pkg-dest-info p {
    display: none;
  }

  .pkg-dest-count {
    font-size: 1.4rem;
  }

  .pkg-cta-strip {
    padding: 32px 20px;
  }
}

/* ================================================================
   HOMESTAY HERO — 320px FIX
   ================================================================ */
@media (max-width: 360px) {

  .pkg-hero-content .container {
    padding: 0 16px;
  }

  .pkg-hero-left {
    max-width: 100% !important;
    width: 100%;
  }

  .pkg-hero-h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
    line-height: 2;
    word-break: break-word;
  }

  .pkg-hero-left p {
    font-size: 1rem !important;
    max-width: 100% !important;
  }
}

/* ================================================================
   HOMESTAY GUIDELINES — MOBILE FIX
   ================================================================ */
@media (max-width: 700px) {

  /* Override the inline-styled strip */
  #guidelines .pkg-cta-strip {
    flex-direction: column !important;
    padding: 28px 18px !important;
    gap: 24px !important;
    text-align: center;
  }

  #guidelines .pkg-cta-strip>div:first-child {
    min-width: unset !important;
    width: 100%;
  }

  #guidelines .pkg-cta-strip h3 {
    font-size: 1.6rem !important;
    margin-bottom: 14px;
  }

  #guidelines .pkg-cta-strip ul {
    text-align: left;
    padding: 0 8px;
  }

  #guidelines .pkg-cta-strip ul li {
    font-size: .88rem;
    line-height: 1.7;
  }

  #guidelines .pkg-cta-strip img {
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 8px;
  }
}

@media (max-width: 400px) {

  #guidelines .pkg-cta-strip {
    padding: 22px 14px !important;
  }

  #guidelines .pkg-cta-strip h3 {
    font-size: 1.4rem !important;
  }

  #guidelines .pkg-cta-strip ul li {
    font-size: .82rem;
  }
}

/* ================================================================
     GALLERY PAGE — SPECIFIC STYLES
     ================================================================ */

/* ── HERO ── */
.gal-hero {
  position: relative;
  height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.gal-hero-slides {
  position: absolute;
  inset: 0;
}

.gal-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.gal-hero-slide.active {
  opacity: 1;
}

.gal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 33, 58, .15) 0%,
      rgba(5, 33, 58, .5) 50%,
      rgba(5, 33, 58, .96) 100%);
  z-index: 1;
}

.gal-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .05;
  pointer-events: none;
}

.gal-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 0 100px 30px;
}

.gal-hero-content .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.gal-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.gal-hero-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.gal-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}

.gal-hero-breadcrumb a {
  color: var(--amber);
  font-weight: 600;
  transition: var(--tr);
}

.gal-hero-breadcrumb i {
  font-size: .55rem;
  color: rgba(255, 255, 255, .3);
}

.gal-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  color: var(--white);
  line-height: .95;
  letter-spacing: 1px;
}

.gal-hero-h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--amber);
  font-size: .75em;
  letter-spacing: 2px;
}

/* Hero slide indicator dots */
.gal-hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.gal-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
}

.gal-hero-dot.active {
  background: var(--amber);
  transform: scale(1.4);
}

/* Hero stats */
.gal-hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 12px;
  flex-shrink: 0;
}

.ghs-item {
  text-align: center;
}

.ghs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
  line-height: 1;
}

.ghs-lbl {
  display: block;
  font-size: .62rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.ghs-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
}

/* ── FILTER BAR ── */
.gal-filter-bar {
  position: static;
  top: 70px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ivory-3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.gal-filter-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.gal-filter-inner::-webkit-scrollbar {
  display: none;
}

.gal-filter-group {
  display: flex;
  align-items: center;
  gap: 0;
  border-right: 1px solid var(--ivory-3);
  padding: 0 24px;
  flex-shrink: 0;
}

.gal-filter-group:first-child {
  padding-left: 0;
}

.gal-filter-group:last-child {
  border-right: none;
}

.gal-filter-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-right: 12px;
  flex-shrink: 0;
}

.gal-filter-tabs {
  display: flex;
  gap: 2px;
}

.gft {
  padding: 16px 14px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--slate);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}

.gft:hover {
  color: var(--black);
}

.gft.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* View toggles */
.gal-view-toggles {
  display: flex;
  gap: 4px;
  margin-left: auto;
  padding: 0 0 0 24px;
  flex-shrink: 0;
}

.gal-view-btn {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ivory-3);
  background: none;
  color: var(--slate);
  font-size: .85rem;
  cursor: pointer;
  transition: var(--tr);
}

.gal-view-btn.active,
.gal-view-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.gal-result-count {
  font-size: .76rem;
  color: var(--slate);
  padding: 0 0 0 16px;
  flex-shrink: 0;
  white-space: nowrap;
}

.gal-result-count strong {
  color: var(--black);
}

/* ── GALLERY MAIN ── */
.gal-main {
  padding: 60px 0 100px;
  background: var(--black);
  min-height: 600px;
}

/* ── REGION SECTION HEADER ── */
.gal-region-section {
  margin-bottom: 64px;
}

.gal-region-section[data-hidden="true"] {
  display: none !important;
}

.gal-region-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gal-region-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.gal-region-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 3px;
}

.gal-region-info p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

.gal-region-count {
  margin-left: auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

/* ── MASONRY GRID ── */
.gal-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  grid-auto-flow: dense;
}

.gal-masonry.view-2col {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 340px;
}

.gal-masonry.view-3col {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
}

/* ── GALLERY ITEM ── */
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--black-2);
}

.gal-item[data-hidden="true"] {
  display: none !important;
}

.gal-item.tall {
  grid-row: span 2;
}

.gal-item.wide {
  grid-column: span 2;
}

.gal-item.hero-item {
  grid-column: span 2;
  grid-row: span 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1), filter .4s;
  filter: brightness(.92) saturate(.9);
}

.gal-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.1);
}

/* Overlay */
.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 33, 58, .92) 0%,
      rgba(5, 33, 58, .3) 45%,
      transparent 100%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.gal-item:hover .gal-item-overlay {
  opacity: 1;
}

.gal-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.gal-item.hero-item .gal-item-title {
  font-size: 1.4rem;
}

.gal-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gal-item-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
}

.gal-item-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s;
}

.gal-item:hover .gal-item-expand {
  opacity: 1;
  transform: scale(1);
}

.gal-item-expand:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

/* Vertical label for tall items */
.gal-item-vert-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  writing-mode: vertical-lr;
  transform: translateY(-50%) rotate(180deg);
  pointer-events: none;
  transition: color .3s;
}

.gal-item:hover .gal-item-vert-label {
  color: rgba(255, 255, 255, .5);
}

/* ── LIGHTBOX ── */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 15, 28, .97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}

.gal-lightbox.active {
  display: flex;
}

.gal-lb-inner {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
}

.gal-lb-img-wrap {
  position: relative;
  background: var(--black);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gal-lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 80vh;
  transition: opacity .3s;
}

/* Prev/Next inside lightbox */
.gal-lb-prev,
.gal-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--tr);
  z-index: 2;
}

.gal-lb-prev {
  left: 14px;
}

.gal-lb-next {
  right: 14px;
}

.gal-lb-prev:hover,
.gal-lb-next:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

/* Lightbox info panel */
.gal-lb-info {
  background: var(--black-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, .06);
}

.gal-lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--tr);
}

.gal-lb-close:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

.gal-lb-counter {
  font-family: var(--font-display);
  font-size: .85rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.gal-lb-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.gal-lb-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.gal-lb-desc {
  font-size: .84rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.gal-lb-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.gal-lb-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

.gal-lb-meta-item i {
  color: var(--amber);
  width: 14px;
  font-size: .8rem;
}

.gal-lb-pkg-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--black);
  padding: 11px 22px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  transition: var(--tr);
  align-self: flex-start;
  text-decoration: none;
}

.gal-lb-pkg-link:hover {
  background: var(--amber-dark);
  color: var(--black);
  transform: translateY(-2px);
}

/* Thumbnails strip */
.gal-lb-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.gal-lb-thumbs::-webkit-scrollbar {
  display: none;
}

.gal-lb-thumb {
  width: 52px;
  height: 40px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .25s;
  opacity: .5;
  transition: opacity .25s, border-color .25s;
}

.gal-lb-thumb.active {
  border-color: var(--amber);
  opacity: 1;
}

.gal-lb-thumb:hover {
  opacity: .8;
}

.gal-lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── HIDDEN ── */
.gal-item[data-hidden="true"] {
  display: none !important;
}

.gal-region-section[data-hidden="true"] {
  display: none !important;
}

/* ── NO RESULTS ── */
.gal-no-results {
  text-align: center;
  padding: 80px 0;
  display: none;
}

.gal-no-results i {
  font-size: 3rem;
  color: rgba(255, 255, 255, .15);
  margin-bottom: 16px;
  display: block;
}

.gal-no-results h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, .6);
}

.gal-no-results p {
  color: rgba(255, 255, 255, .3);
}

/* ── FEATURED SHOT STRIP ── */
.gal-featured-strip {
  margin-bottom: 60px;
}

.gal-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.gal-section-eyebrow span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
}

.gal-section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--amber);
}

.gal-section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

/* ── CTA STRIP ── */
.gal-cta-strip {
  margin-top: 60px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.gal-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .04;
  pointer-events: none;
}

.gal-cta-strip>* {
  position: relative;
  z-index: 1;
}

.gal-cta-text p {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.gal-cta-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.1;
}

.gal-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}


/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .gal-lb-inner {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .gal-lb-img-wrap {
    min-height: 300px;
  }

  .gal-masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .gal-hero-content {
    padding: 130px 20px 60px;
  }

  .gal-hero-content .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gal-cta-strip {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }

  .gal-cta-btns {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .gal-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gal-hero {
    height: 460px;
  }

  .gal-hero-stats {
    gap: 16px;
    padding: 12px 16px;
  }

  .gal-item.wide {
    grid-column: span 1;
  }

  .gal-item.hero-item {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ================================================================
     BLOG PAGE — SPECIFIC STYLES
     Aesthetic direction: Editorial Magazine — warm ivory tones,
     strong typographic hierarchy, ink-and-paper feel with amber accents
     ================================================================ */

/* ── HERO ── */
.blog-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
}

.blog-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: .55;
  transition: transform 8s ease;
}

.blog-hero:hover .blog-hero-bg img {
  transform: scale(1.03);
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(5, 33, 58, .92) 0%,
      rgba(5, 33, 58, .65) 55%,
      rgba(5, 33, 58, .4) 100%);
}

.blog-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .05;
  pointer-events: none;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 60px 30px;
}

.blog-hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 60px;
}

.blog-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.blog-hero-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.blog-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px;
}

.blog-hero-breadcrumb a {
  color: var(--amber);
  font-weight: 600;
}

.blog-hero-breadcrumb i {
  font-size: .55rem;
  color: rgba(255, 255, 255, .3);
}

.blog-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  color: var(--white);
  line-height: .95;
  letter-spacing: 1px;
}

.blog-hero-h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--amber);
  font-size: .75em;
  letter-spacing: 2px;
}

.blog-hero-desc {
  font-size: .96rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 420px;
}

/* Featured article preview on hero right */
.blog-hero-featured {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.blog-hero-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.bhf-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.bhf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.blog-hero-featured:hover .bhf-img img {
  transform: scale(1.06);
}

.bhf-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 20px;
}

.bhf-body {
  padding: 20px;
}

.bhf-meta {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.bhf-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.bhf-excerpt {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

.bhf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--amber);
  margin-top: 14px;
  transition: gap .25s;
}

.bhf-link:hover {
  gap: 10px;
}

/* ── FILTER BAR ── */
.blog-filter-bar {
  position: static;
  top: 70px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ivory-3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.blog-filter-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.blog-filter-inner::-webkit-scrollbar {
  display: none;
}

.bft {
  padding: 16px 16px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--slate);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
  flex-shrink: 0;
}

.bft:hover {
  color: var(--black);
}

.bft.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.blog-search-wrap {
  margin-left: auto;
  flex-shrink: 0;
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-search {
  display: flex;
  align-items: center;
  background: var(--ivory-2);
  border: 1.5px solid var(--ivory-3);
  border-radius: 30px;
  padding: 6px 14px;
  gap: 8px;
  transition: border-color .25s;
}

.blog-search:focus-within {
  border-color: var(--amber);
}

.blog-search i {
  color: var(--slate);
  font-size: .8rem;
}

.blog-search input {
  border: none;
  background: none;
  font-size: .8rem;
  color: var(--black);
  font-family: var(--font-body);
  width: 160px;
  outline: none;
}

.blog-search input::placeholder {
  color: var(--slate-light);
}

/* ── MAIN LAYOUT ── */
.blog-main {
  padding: 60px 0 100px;
  background: var(--ivory-2);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ── POSTS AREA ── */
/* .blog-posts-area {} */

/* Section eyebrow */
.blog-sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.blog-sec-label span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
}

.blog-sec-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--amber);
}

.blog-sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ivory-3);
}

/* ── FEATURED POST (large) ── */
.blog-post-featured {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ivory-3);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: transform .35s var(--ease), box-shadow .35s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-post-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 27, 42, .12);
  border-color: transparent;
}

.bpf-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.bpf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.blog-post-featured:hover .bpf-img img {
  transform: scale(1.06);
}

.bpf-cat {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--black);
  padding: 5px 14px 5px 16px;
  border-radius: 0 20px 20px 0;
}

.bpf-read-time {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: .68rem;
  font-weight: 600;
  background: rgba(5, 33, 58, .8);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, .8);
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bpf-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.bpf-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  color: var(--slate);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.bpf-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate-light);
}

.bpf-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: .5px;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 14px;
}

.bpf-excerpt {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.bpf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--ivory-3);
}

.bpf-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bpf-author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
}

.bpf-author-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--black);
}

.bpf-author-role {
  font-size: .68rem;
  color: var(--slate);
}

.bpf-read-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--amber);
  transition: gap .25s;
}

.blog-post-featured:hover .bpf-read-link {
  gap: 12px;
}

/* ── STANDARD POST GRID ── */
.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

/* ── STANDARD POST CARD ── */
.blog-card-new {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ivory-3);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13, 27, 42, .1);
  border-color: transparent;
}

.bcn-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.bcn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.blog-card-new:hover .bcn-img img {
  transform: scale(1.08);
}

.bcn-cat {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--black);
  padding: 4px 12px 4px 14px;
  border-radius: 0 16px 16px 0;
}

.bcn-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bcn-meta {
  font-size: .7rem;
  color: var(--slate);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bcn-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .3px;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 8px;
}

.bcn-excerpt {
  font-size: .83rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.bcn-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--ivory-3);
}

.bcn-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bcn-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--amber);
}

.bcn-author-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--black);
}

.bcn-read {
  font-size: .74rem;
  font-weight: 700;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .25s;
}

.blog-card-new:hover .bcn-read {
  gap: 9px;
}

/* ── HORIZONTAL POST CARD ── */
.blog-card-horiz {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ivory-3);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  display: grid;
  grid-template-columns: 200px 1fr;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}

.blog-card-horiz:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 27, 42, .1);
  border-color: transparent;
}

.bch-img {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 180px;
}

.bch-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.blog-card-horiz:hover .bch-img img {
  transform: scale(1.07);
}

.bch-cat {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--black);
  color: var(--amber);
  padding: 3px 10px 3px 12px;
  border-radius: 0 12px 12px 0;
}

.bch-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}

.bch-meta {
  font-size: .68rem;
  color: var(--slate);
  margin-bottom: 7px;
  display: flex;
  gap: 10px;
}

.bch-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .3px;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 7px;
  flex: 1;
}

.bch-excerpt {
  font-size: .8rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 12px;
}

.bch-read {
  font-size: .72rem;
  font-weight: 700;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .25s;
  align-self: flex-start;
}

.blog-card-horiz:hover .bch-read {
  gap: 9px;
}

/* ── LOAD MORE ── */
.blog-load-more {
  text-align: center;
  margin-top: 8px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  padding: 13px 32px;
  border-radius: 30px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  transition: var(--tr);
}

.btn-load-more:hover {
  background: var(--amber);
  color: var(--black);
  transform: translateY(-2px);
}

/* ── SIDEBAR ── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--ivory-3);
  overflow: hidden;
}

.sw-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--ivory-3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sw-header i {
  color: var(--amber);
  font-size: .9rem;
}

.sw-header h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .5px;
  color: var(--black);
  font-weight: 400;
}

.sw-body {
  padding: 18px 22px;
}

/* Categories widget */
.sw-categories {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sw-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .82rem;
  color: var(--black-3);
  cursor: pointer;
  transition: var(--tr);
  font-weight: 500;
  text-decoration: none;
}

.sw-cat-item:hover,
.sw-cat-item.active {
  background: var(--amber-pale);
  color: var(--amber);
}

.sw-cat-item span {
  font-size: .68rem;
  background: var(--ivory-2);
  color: var(--slate);
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 600;
}

.sw-cat-item.active span {
  background: var(--amber);
  color: var(--black);
}

/* Popular posts widget */
.sw-popular {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sw-pop-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ivory-3);
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
  color: inherit;
}

.sw-pop-item:last-child {
  border-bottom: none;
}

.sw-pop-item:hover {
  transform: translateX(4px);
}

.sw-pop-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ivory-3);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.sw-pop-item:hover .sw-pop-num {
  color: var(--amber);
}

.sw-pop-img {
  width: 64px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.sw-pop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-pop-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 4px;
}

.sw-pop-meta {
  font-size: .68rem;
  color: var(--slate);
}

/* Tags cloud widget */
.sw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sw-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--ivory-3);
  color: var(--black-3);
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
}

.sw-tag:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

/* Newsletter widget */
.sw-newsletter {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.sw-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .05;
}

.sw-newsletter .sw-header {
  border-bottom-color: rgba(255, 255, 255, .08);
}

.sw-newsletter .sw-header h4 {
  color: var(--white);
}

.sw-newsletter .sw-body {
  position: relative;
  z-index: 1;
}

.sw-nl-text {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  margin-bottom: 16px;
}

.sw-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sw-nl-input {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white);
  font-size: .84rem;
  font-family: var(--font-body);
  transition: border-color .25s;
}

.sw-nl-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.sw-nl-input:focus {
  border-color: var(--amber);
  outline: none;
}

.sw-nl-btn {
  background: var(--amber);
  color: var(--black);
  padding: 11px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.sw-nl-btn:hover {
  background: var(--amber-dark);
}

/* ── HIDDEN (filter) ── */
.blog-post-featured[data-hidden="true"],
.blog-card-new[data-hidden="true"],
.blog-card-horiz[data-hidden="true"] {
  display: none !important;
}

/* ── NO RESULTS ── */
.blog-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  display: none;
}

.blog-no-results i {
  font-size: 2.5rem;
  color: var(--slate-light);
  margin-bottom: 14px;
  display: block;
}

.blog-no-results h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
}

/* ── PAGINATION ── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.bp-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ivory-3);
  background: none;
  color: var(--black-3);
  font-size: .84rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--tr);
}

.bp-btn:hover,
.bp-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

.bp-btn.arrow {
  font-size: .7rem;
}

.bp-dots {
  color: var(--slate);
  font-size: .9rem;
  padding: 0 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .blog-hero-content .container {
    grid-template-columns: 1fr;
  }

  .blog-hero-featured {
    display: none;
  }

  .blog-post-featured {
    grid-template-columns: 1fr;
  }

  .bpf-img {
    min-height: 220px;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-horiz {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 600px) {
  .blog-hero {
    height: 460px;
  }

  .blog-card-horiz {
    grid-template-columns: 1fr;
  }

  .bch-img {
    height: 160px;
  }
}

/* ================================================================
     CONTACT PAGE — SPECIFIC STYLES
     Aesthetic: Immersive dark split — left panel is a living
     atmosphere piece, right side is the clean action zone.
     The unforgettable thing: the left panel feels like looking
     through a window into the mountains.
     ================================================================ */

/* ── HERO ── */
.ct-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
}

.ct-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}

.ct-hero:hover .ct-hero-bg img {
  transform: scale(1.03);
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 33, 58, .2) 0%,
      rgba(5, 33, 58, .6) 55%,
      rgba(5, 33, 58, .96) 100%);
}

.ct-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .05;
  pointer-events: none;
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 76px 30px;
}

.ct-hero-content .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.ct-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.ct-hero-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.ct-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}

.ct-hero-breadcrumb a {
  color: var(--amber);
  font-weight: 600;
}

.ct-hero-breadcrumb i {
  font-size: .55rem;
  color: rgba(255, 255, 255, .3);
}

.ct-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  color: var(--white);
  line-height: .95;
  letter-spacing: 1px;
}

.ct-hero-h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--amber);
  font-size: .75em;
  letter-spacing: 2px;
}

/* Quick contact chips on hero right */
.ct-hero-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.ct-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  transition: var(--tr);
}

.ct-chip:hover {
  background: rgba(79, 172, 254, .15);
  border-color: rgba(79, 172, 254, .35);
  transform: translateX(4px);
}

.ct-chip-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: .85rem;
  flex-shrink: 0;
}

.ct-chip-ico.green {
  background: #25d366;
}

.ct-chip-ico.blue {
  background: #1877f2;
}

.ct-chip-label {
  font-size: .68rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1px;
}

.ct-chip-val {
  font-size: .86rem;
  font-weight: 600;
  color: var(--white);
}

/* ── CONTACT SPLIT SECTION ── */
.ct-split {
  background: var(--ivory-2);
  padding: 60px 0 100px;
  margin-top: 120px;
  max-width: 1250px;
  margin: 0 auto;
}

.ct-split-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

/* ── LEFT PANEL (dark atmosphere) ── */
.ct-left {
  background: var(--black);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
}

.ct-left-img {
  position: absolute;
  inset: 0;
}

.ct-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .25;
  transition: opacity .4s;
}

.ct-left:hover .ct-left-img img {
  opacity: .32;
}

.ct-left-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .07;
}

.ct-left-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 33, 58, .7) 0%,
      rgba(5, 33, 58, .5) 40%,
      rgba(5, 33, 58, .85) 100%);
}

.ct-left-content {
  position: relative;
  z-index: 2;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  justify-content: center;
  /* <-- Add this line */
}

.ct-left-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-left-eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.ct-left-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
}

.ct-left-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Contact cards on left */
.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  transition: var(--tr);
}

.ct-info-card:hover {
  background: rgba(79, 172, 254, .1);
  border-color: rgba(79, 172, 254, .2);
  transform: translateX(4px);
}

.ct-info-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(79, 172, 254, .15);
  border: 1px solid rgba(79, 172, 254, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: .9rem;
  flex-shrink: 0;
  transition: var(--tr);
}

.ct-info-card:hover .ct-info-ico {
  background: var(--amber);
  color: var(--black);
}

.ct-info-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 3px;
}

.ct-info-val {
  font-size: .88rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.ct-info-val a {
  color: var(--white);
  text-decoration: none;
  transition: color .25s;
}

.ct-info-val a:hover {
  color: var(--amber);
}

/* Hours badge */
.ct-hours {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ct-hour-pill {
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .65);
}

.ct-hour-pill.open {
  background: rgba(34, 197, 94, .12);
  border-color: rgba(34, 197, 94, .25);
  color: #4ade80;
}

/* Social row on left */
.ct-left-social {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.ct-soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  color: #fff;
}

.ct-soc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .4);
}

.ct-soc-fb {
  background: #1877f2;
}

.ct-soc-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.ct-soc-tw {
  background: #000;
}

.ct-soc-yt {
  background: #ff0000;
}

.ct-soc-wa {
  background: #25d366;
}

/* ── RIGHT PANEL (form) ── */
.ct-right {
  background: var(--white);
  border-radius: 0 20px 20px 0;
  padding: 52px 48px;
  box-shadow: 0 24px 70px rgba(13, 27, 42, .1);
}

.ct-form-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-form-eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.ct-form-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--black);
  letter-spacing: .5px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.ct-form-title em {
  font-style: normal;
  color: var(--amber);
}

.ct-form-desc {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Enquiry type selector */
.ct-enquiry-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.ct-enq-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 10px;
  border-radius: 10px;
  border: 1.5px solid var(--ivory-3);
  cursor: pointer;
  transition: var(--tr);
  text-align: center;
  background: none;
  font-family: var(--font-body);
}

.ct-enq-type i {
  font-size: 1.1rem;
  color: var(--slate);
  transition: color .25s;
}

.ct-enq-type span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: .3px;
}

.ct-enq-type.active,
.ct-enq-type:hover {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.ct-enq-type.active i,
.ct-enq-type:hover i {
  color: var(--amber);
}

.ct-enq-type.active span,
.ct-enq-type:hover span {
  color: var(--amber);
}

/* Form fields */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-field label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 5px;
}

.ct-field label i {
  color: var(--amber);
  font-size: .75rem;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--ivory-3);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--black);
  font-family: var(--font-body);
  background: var(--ivory-2);
  transition: border-color .25s, background .25s, box-shadow .25s;
  outline: none;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: var(--slate-light);
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79, 172, 254, .1);
}

.ct-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23888' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

.ct-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* Character count */
.ct-char-count {
  font-size: .68rem;
  color: var(--slate-light);
  text-align: right;
  margin-top: -10px;
}

/* Submit row */
.ct-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.ct-privacy {
  font-size: .76rem;
  color: var(--slate);
  line-height: 1.5;
  flex: 1;
}

.ct-privacy a {
  color: var(--amber);
}

.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: var(--tr);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.ct-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  z-index: 0;
}

.ct-submit-btn:hover::after {
  transform: scaleX(1);
}

.ct-submit-btn:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}

.ct-submit-btn>* {
  position: relative;
  z-index: 1;
}

/* Success state */
.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.ct-success-ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .1);
  border: 2px solid rgba(34, 197, 94, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #22c55e;
  animation: successPop .5s var(--ease) both;
}

@keyframes successPop {
  from {
    transform: scale(.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ct-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--black);
}

.ct-success p {
  font-size: .9rem;
  color: var(--slate);
  max-width: 320px;
  line-height: 1.7;
}

/* ── MAP SECTION ── */
.ct-map-section {
  background: var(--ivory-2);
  padding: 0 0 80px;
  max-width: 1250px;
  margin: 0 auto;
}

.ct-map-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

.ct-map-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.ct-map-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
  letter-spacing: .5px;
  line-height: 1;
}

.ct-map-title em {
  font-style: normal;
  color: var(--amber);
}

.ct-map-subtitle {
  font-size: .84rem;
  color: var(--slate);
  margin-top: 6px;
}

.ct-offices {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ct-office-tab {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--ivory-3);
  background: none;
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--tr);
}

.ct-office-tab.active,
.ct-office-tab:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.ct-map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(13, 27, 42, .12);
  border: 1px solid var(--ivory-3);
  position: relative;
}

.ct-map-container iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

/* Map overlay badge */
.ct-map-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(13, 27, 42, .18);
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--ivory-3);
}

.ct-map-badge-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: .9rem;
}

.ct-map-badge-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--black);
}

.ct-map-badge-addr {
  font-size: .72rem;
  color: var(--slate);
}

/* ── FAQ SECTION ── */
.ct-faq-section {
  padding: 80px 0 100px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.ct-faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .05;
}

.ct-faq-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
}

.ct-faq-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

.ct-faq-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-faq-eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.ct-faq-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.05;
}

.ct-faq-title em {
  font-style: normal;
  color: var(--amber);
}

.ct-faq-subtitle {
  color: rgba(255, 255, 255, .55);
  font-size: .96rem;
  line-height: 1.8;
}

.ct-faq-subtitle strong {
  color: rgba(255, 255, 255, .8);
}

/* FAQ accordion */
.ct-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-faq-item {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s;
}

.ct-faq-item.open {
  border-color: rgba(79, 172, 254, .25);
}

.ct-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  gap: 14px;
  transition: background .25s;
  user-select: none;
}

.ct-faq-q:hover {
  background: rgba(255, 255, 255, .07);
}

.ct-faq-item.open .ct-faq-q {
  background: rgba(79, 172, 254, .08);
  color: var(--amber);
}

.ct-faq-q-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
  transition: var(--tr);
}

.ct-faq-item.open .ct-faq-q-ico {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
  transform: rotate(45deg);
}

.ct-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22, .61, .36, 1);
}

.ct-faq-item.open .ct-faq-a {
  max-height: 300px;
}

.ct-faq-a-inner {
  padding: 0 24px 20px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

.ct-faq-a-inner a {
  color: var(--amber);
}

/* ── STATS STRIP ── */
.ct-stats-strip {
  background: var(--amber);
  padding: 28px 0;
}

.ct-stats-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  flex-wrap: wrap;
}

.ct-stat-item {
  text-align: center;
  padding: 8px 20px;
}

.ct-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: 1px;
}

.ct-stat-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .65);
  margin-top: 3px;
}

.ct-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, .15);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .ct-split-inner {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 40px;
  }

  .ct-left {
    border-radius: 20px 20px 0 0;
    min-height: 400px;
  }

  .ct-right {
    border-radius: 0 0 20px 20px;
    padding: 36px 28px;
  }

  .ct-hero-content {
    padding: 130px 20px 60px;
  }

  .ct-hero-content .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .ct-hero-chips {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ct-faq-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ct-map-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .ct-form-row {
    grid-template-columns: 1fr;
  }

  .ct-enquiry-types {
    grid-template-columns: 1fr 1fr;
  }

  .ct-hero {
    height: 460px;
  }

  .ct-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ct-submit-btn {
    justify-content: center;
  }

  .ct-stats-inner {
    gap: 0;
  }

  .ct-stat-div {
    display: none;
  }

  .ct-stat-item {
    flex: 1 1 40%;
  }
}

/* ================================================================
   CONTACT HERO — MOBILE FIX
   ================================================================ */
@media (max-width: 700px) {

  .ct-hero {
    height: auto;
    min-height: 100svh;
    padding-bottom: 32px;
  }

  .ct-hero-content {
    padding: 120px 0 32px 0;
  }

  .ct-hero-content .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 0 18px;
  }

  .ct-hero-tag {
    margin-bottom: 8px;
  }

  .ct-hero-h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 1;
  }

  .ct-hero-chips {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .ct-chip {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .ct-chip-val {
    font-size: .78rem;
    word-break: break-all;
  }
}

@media (max-width: 400px) {

  .ct-hero-content {
    padding: 110px 0 28px 0;
  }

  .ct-hero-h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .ct-chip-val {
    font-size: .72rem;
  }
}

/* ================================================================
     BOOKING PAGE — SPECIFIC STYLES
     Aesthetic: Multi-step wizard on dark — feels like a premium
     airline booking experience crossed with a luxury travel concierge.
     The unforgettable thing: a glowing step-by-step journey builder
     with a persistent trip summary sidebar that updates live.
     ================================================================ */

/* ── HERO ── */
.bk-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.bk-hero-bg {
  position: absolute;
  inset: 0;
}

.bk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: .5;
}

.bk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(5, 33, 58, .95) 0%,
      rgba(5, 33, 58, .7) 55%,
      rgba(5, 33, 58, .4) 100%);
}

.bk-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3Cpath d='M0 40 L20 5 L40 40 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .05;
  pointer-events: none;
}

.bk-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 52px 30px;
}

.bk-hero-content .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.bk-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.bk-hero-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.bk-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}

.bk-hero-breadcrumb a {
  color: var(--amber);
  font-weight: 600;
}

.bk-hero-breadcrumb i {
  font-size: .55rem;
  color: rgba(255, 255, 255, .3);
}

.bk-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  color: var(--white);
  line-height: .95;
  letter-spacing: 1px;
}

.bk-hero-h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--amber);
  font-size: .75em;
  letter-spacing: 2px;
}

/* Trust badges on hero right */
.bk-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.bk-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 10px 16px;
}

.bk-trust-badge i {
  color: var(--amber);
  width: 16px;
  text-align: center;
}

.bk-trust-badge span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

/* ── AMBER STRIP ── */
.bk-amber-strip {
  background: var(--amber);
  padding: 14px 0;
}

.bk-strip-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.bk-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--black);
}

.bk-strip-item i {
  font-size: .8rem;
}

/* ── MAIN BOOKING LAYOUT ── */
.bk-main {
  background: var(--ivory-2);
  padding: 56px 0 20px;
  margin-bottom: 1px;
}

.bk-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* ── STEP WIZARD ── */
.bk-wizard {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--ivory-3);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13, 27, 42, .08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Step progress header */
.bk-steps-header {
  background: var(--black);
  padding: 28px 36px 0;
  position: relative;
  overflow: hidden;
}

.bk-steps-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .06;
}

.bk-steps-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.bk-steps {
  display: flex;
  position: relative;
  z-index: 1;
}

.bk-step {
  flex: 1;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  cursor: pointer;
}

.bk-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  transition: background .3s;
}

.bk-step.active::after,
.bk-step.done::after {
  background: var(--amber);
}

.bk-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .4);
  transition: var(--tr);
  background: transparent;
}

.bk-step.active .bk-step-num {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(79, 172, 254, .12);
}

.bk-step.done .bk-step-num {
  border-color: var(--amber);
  color: var(--black);
  background: var(--amber);
}

.bk-step-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  transition: color .3s;
}

.bk-step.active .bk-step-label {
  color: var(--amber);
}

.bk-step.done .bk-step-label {
  color: rgba(255, 255, 255, .6);
}

/* Step panels */
.bk-step-panels {
  padding: 40px 40px 36px;
  flex: 1;
}

.bk-panel {
  display: none;
}

.bk-panel.active {
  display: block;
}

.bk-panel-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--black);
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.bk-panel-title em {
  font-style: normal;
  color: var(--amber);
}

.bk-panel-desc {
  font-size: .86rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ── DESTINATION PICKER (Step 1) ── */
.bk-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.bk-dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 130px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.bk-dest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 27, 42, .15);
}

.bk-dest-card.selected {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(79, 172, 254, .2);
}

.bk-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  filter: brightness(.75);
}

.bk-dest-card:hover img {
  transform: scale(1.07);
}

.bk-dest-card.selected img {
  filter: brightness(.6);
}

.bk-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 33, 58, .85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}

.bk-dest-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1;
}

.bk-dest-sub {
  font-size: .62rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px;
}

.bk-dest-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: .7rem;
}

.bk-dest-card.selected .bk-dest-check {
  display: flex;
}

/* ── TRIP TYPE SELECTOR ── */
.bk-trip-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.bk-trip-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 8px;
  border-radius: 10px;
  border: 1.5px solid var(--ivory-3);
  cursor: pointer;
  transition: var(--tr);
  background: none;
  font-family: var(--font-body);
  text-align: center;
}

.bk-trip-type i {
  font-size: 1.2rem;
  color: var(--slate);
  transition: color .25s;
}

.bk-trip-type span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--slate);
}

.bk-trip-type.selected {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.bk-trip-type.selected i,
.bk-trip-type.selected span {
  color: var(--amber);
}

/* ── FORM FIELDS (shared) ── */
.bk-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bk-field label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bk-field label i {
  color: var(--amber);
  font-size: .75rem;
}

.bk-field input,
.bk-field select,
.bk-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--ivory-3);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--black);
  font-family: var(--font-body);
  background: var(--ivory-2);
  transition: border-color .25s, background .25s, box-shadow .25s;
  outline: none;
}

.bk-field input::placeholder,
.bk-field textarea::placeholder {
  color: var(--slate-light);
}

.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79, 172, 254, .1);
}

.bk-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23888' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

.bk-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* Guest counter */
.bk-guest-counter {
  display: flex;
  align-items: center;
  background: var(--ivory-2);
  border: 1.5px solid var(--ivory-3);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s;
}

.bk-guest-counter:focus-within {
  border-color: var(--amber);
}

.bk-gc-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: .9rem;
  color: var(--slate);
  cursor: pointer;
  transition: var(--tr);
  font-size: 1rem;
}

.bk-gc-btn:hover {
  background: var(--ivory-3);
  color: var(--black);
}

.bk-gc-val {
  flex: 1;
  text-align: center;
  font-size: .92rem;
  font-weight: 700;
  color: var(--black);
  border: none;
  background: none;
  outline: none;
  pointer-events: none;
}

/* Duration slider visual */
.bk-duration-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bk-dur-pill {
  padding: 7px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--ivory-3);
  background: none;
  font-size: .76rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--tr);
}

.bk-dur-pill.selected {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Add-on checkboxes */
.bk-addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bk-addon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--ivory-3);
  cursor: pointer;
  transition: var(--tr);
  position: relative;
}

.bk-addon:hover {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.bk-addon.selected {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.bk-addon input[type="checkbox"] {
  display: none;
}

.bk-addon-check {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 2px solid var(--ivory-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: .7rem;
  transition: var(--tr);
  background: var(--white);
}

.bk-addon.selected .bk-addon-check {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

.bk-addon-icon {
  color: var(--amber);
  font-size: .9rem;
  width: 16px;
  text-align: center;
}

/* .bk-addon-text {} */
.bk-addon-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--black);
}

.bk-addon-price {
  font-size: .72rem;
  color: var(--slate);
}

/* Budget range */
.bk-budget-opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bk-budget-opt {
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid var(--ivory-3);
  cursor: pointer;
  text-align: center;
  transition: var(--tr);
  background: none;
  font-family: var(--font-body);
}

.bk-budget-opt:hover {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.bk-budget-opt.selected {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.bk-budget-icon {
  font-size: 1.2rem;
  color: var(--slate);
  margin-bottom: 6px;
}

.bk-budget-opt.selected .bk-budget-icon {
  color: var(--amber);
}

.bk-budget-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--black);
}

.bk-budget-range {
  font-size: .7rem;
  color: var(--slate);
  margin-top: 2px;
}

/* ── STEP NAV BUTTONS ── */
.bk-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ivory-3);
}

.bk-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--ivory-3);
  background: none;
  font-size: .84rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--tr);
}

.bk-btn-back:hover {
  border-color: var(--black);
  color: var(--black);
}

.bk-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 30px;
  background: var(--black);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.bk-btn-next::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  z-index: 0;
}

.bk-btn-next:hover::after {
  transform: scaleX(1);
}

.bk-btn-next:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}

.bk-btn-next>* {
  position: relative;
  z-index: 1;
}

.bk-btn-submit {
  background: var(--amber);
  color: var(--black);
}

.bk-btn-submit::after {
  background: var(--black);
}

.bk-btn-submit:hover {
  color: var(--white);
}

/* ── STEP INDICATOR (small text) ── */
.bk-step-indicator {
  font-size: .72rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bk-step-indicator strong {
  color: var(--black);
}

/* ── SUCCESS STATE ── */
.bk-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  gap: 18px;
}

.bk-success-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successRing .6s var(--ease) both;
}

.bk-success-ico {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--black);
  animation: successPop .4s var(--ease) .2s both;
}

@keyframes successRing {
  from {
    transform: scale(.3);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes successPop {
  from {
    transform: scale(.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.bk-success h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--black);
  letter-spacing: .5px;
}

.bk-success-ref {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 6px 16px;
  border-radius: 20px;
}

.bk-success p {
  font-size: .9rem;
  color: var(--slate);
  max-width: 380px;
  line-height: 1.7;
}

.bk-success-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── SIDEBAR: TRIP SUMMARY ── */
.bk-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  top: 100px;
  height: 915px;
  /* Fixed height you set earlier */
}

.bk-summary-card {
  background: var(--black);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  height: 100%;
  /* NEW: Make the card a flex column so we can stretch the inside */
  display: flex;
  flex-direction: column;
}

.bk-summary-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0 L20 35 L40 0 Z' fill='none' stroke='%23ffffff' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .05;
}

/* ── IMAGE SECTION ── */
.bk-summary-img {
  height: 280px;
  /* INCREASED: Stretched the image down from 160px */
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  /* Prevents the image from shrinking */
}

.bk-summary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  transition: opacity .4s;
}

.bk-summary-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(13, 27, 42, .9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  /* Increased padding */
}

.bk-summary-dest {
  font-family: var(--font-display);
  font-size: 1.8rem;
  /* INCREASED text size */
  color: var(--white);
  letter-spacing: .5px;
}

/* ── BODY SECTION ── */
.bk-summary-body {
  padding: 30px 24px 20px 24px;
  /* Reduced bottom padding to keep footer tight */
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* NEW: Prevent the main body from scrolling itself */
}

.bk-summary-title {
  font-size: .8rem;
  /* INCREASED */
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.bk-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
  overflow-y: auto;
  /* NEW: Restricting scroll to just the rows list */
  padding-right: 8px;
  /* Room for a subtle scrollbar */
  margin-bottom: 10px;
}

/* Custom subtle scrollbar for the summary rows */
.bk-summary-rows::-webkit-scrollbar {
  width: 4px;
}

.bk-summary-rows::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.bk-summary-rows::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 10px;
  opacity: 0.5;
}

.bk-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.bk-sum-label {
  font-size: .9rem;
  /* INCREASED */
  color: rgba(255, 255, 255, .55);
  /* Slightly brighter for better readability */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bk-sum-label i {
  color: var(--amber);
  width: 16px;
  /* INCREASED icon size */
  font-size: .85rem;
}

.bk-sum-val {
  font-size: 1rem;
  /* INCREASED */
  font-weight: 600;
  color: var(--white);
  text-align: right;
}

.bk-sum-val.placeholder {
  color: rgba(255, 255, 255, .25);
  font-weight: 400;
  font-style: italic;
  font-size: .9rem;
}

.bk-summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 6px 0;
}

/* ── TOTAL ROW ── */
.bk-summary-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  /* Reduced margin as the divider is now closer */
  padding-top: 10px;
  flex-shrink: 0;
  /* NEW: Ensures the footer never shrinks or disappears */
}

.bk-sum-total-label {
  font-size: .85rem;
  /* INCREASED */
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.bk-sum-total-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  /* INCREASED from 1.5rem to make it pop */
  color: var(--amber);
  letter-spacing: .5px;
}

.bk-cards-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  padding: 0 24px;
  width: 100%;
  max-width: 1250px;
  margin: 60px auto;
  justify-content: center;
}

@media (max-width: 1024px) {
  .bk-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .bk-cards-row {
    padding: 0 16px;
    gap: 20px;
    margin: 40px auto;
  }
}

/* Help card */
.bk-help-card {
  background: var(--white);
  border: 1px solid var(--ivory-3);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 350px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
  .bk-help-card {
    max-width: 600px;
    flex: none;
  }
}

@media (max-width: 480px) {
  .bk-help-card {
    padding: 20px;
    max-width: 100%;
  }
}

.bk-help-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  letter-spacing: .5px;
}

.bk-help-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--ivory-3);
  transition: var(--tr);
}

.bk-help-item:hover {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.bk-help-item i {
  color: var(--amber);
  width: 16px;
  font-size: .9rem;
}

/* .bk-help-text {} */
.bk-help-label {
  font-size: .72rem;
  color: var(--slate);
}

.bk-help-val {
  font-size: .84rem;
  font-weight: 700;
  color: var(--black);
}

/* Perks card */
.bk-perks-card {
  background: var(--white);
  border: 1px solid var(--ivory-3);
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 350px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
  .bk-perks-card {
    max-width: 600px;
    flex: none;
  }
}

@media (max-width: 480px) {
  .bk-perks-card {
    padding: 20px;
    max-width: 100%;
  }
}

.bk-perks-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
  letter-spacing: .5px;
  margin-bottom: 14px;
}

.bk-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--ivory-3);
  font-size: .82rem;
  color: var(--black-3);
}

.bk-perk:last-child {
  border-bottom: none;
}

.bk-perk i {
  color: #22c55e;
  font-size: .75rem;
}

/* Trust card */
.bk-trust-card {
  background: var(--white);
  border: 1px solid var(--ivory-3);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 350px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .bk-trust-card {
    max-width: 600px;
    flex: none;
  }
}

@media (max-width: 600px) {
  .bk-trust-card {
    padding: 20px;
    max-width: 100%;
  }
}

.bk-trust-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  letter-spacing: .5px;
  margin-bottom: 2px;
}

.bk-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--ivory-2);
  border: 1px solid var(--ivory-3);
}

.bk-trust-item i {
  color: var(--amber);
  width: 16px;
  font-size: .85rem;
}

.bk-trust-label {
  font-size: .72rem;
  color: var(--slate);
}

.bk-trust-val {
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
}

/* ── POPULAR PACKAGES STRIP ── */
.bk-popular {
  padding: 20px 0 0;
  background: var(--ivory-2);
  margin-top: 20px;
}

.bk-popular-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.bk-popular-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bk-popular-eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.bk-popular-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--black);
  letter-spacing: .5px;
}

.bk-popular-title em {
  font-style: normal;
  color: var(--amber);
}

.bk-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bk-quick-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ivory-3);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  cursor: pointer;
}

.bk-quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 27, 42, .12);
  border-color: transparent;
}

.bk-quick-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.bk-quick-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.bk-quick-card:hover .bk-quick-img img {
  transform: scale(1.07);
}

.bk-quick-badge {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--black);
  padding: 4px 12px 4px 14px;
  border-radius: 0 16px 16px 0;
}

.bk-quick-body {
  padding: 18px 20px;
}

.bk-quick-meta {
  display: flex;
  gap: 12px;
  font-size: .72rem;
  color: var(--slate);
  margin-bottom: 8px;
}

.bk-quick-meta i {
  color: var(--amber);
}

.bk-quick-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black);
  letter-spacing: .3px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.bk-quick-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--ivory-3);
}

.bk-quick-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber);
  letter-spacing: .5px;
}

.bk-quick-per {
  font-size: .68rem;
  color: var(--slate);
  margin-left: 2px;
}

.bk-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .74rem;
  font-weight: 700;
  transition: var(--tr);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.bk-select-btn:hover {
  background: var(--amber);
  color: var(--black);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .bk-layout {
    grid-template-columns: 1fr;
  }

  .bk-sidebar {
    position: static;
  }

  .bk-hero-content .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .bk-quick-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .bk-form-row {
    grid-template-columns: 1fr;
  }

  .bk-dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bk-trip-types {
    grid-template-columns: 1fr 1fr;
  }

  .bk-addons {
    grid-template-columns: 1fr;
  }

  .bk-budget-opts {
    grid-template-columns: 1fr;
  }

  .bk-step-panels {
    padding: 28px 24px 24px;
  }

  .bk-hero {
    height: 440px;
  }

  .bk-quick-grid {
    grid-template-columns: 1fr;
  }

  .bk-trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ================================================================
   BOOKING WIZARD — MOBILE FIX
   ================================================================ */
@media (max-width: 700px) {

  /* Steps header */
  .bk-steps-header {
    padding: 20px 16px 0;
  }

  .bk-steps-title {
    font-size: .6rem;
    margin-bottom: 14px;
  }

  .bk-steps {
    gap: 0;
  }

  .bk-step {
    padding-bottom: 14px;
    flex: 1;
  }

  .bk-step-num {
    width: 28px;
    height: 28px;
    font-size: .72rem;
    margin-bottom: 6px;
  }

  .bk-step-label {
    font-size: .52rem;
    letter-spacing: .3px;
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
  }

  /* Step panels */
  .bk-step-panels {
    padding: 24px 16px 20px;
  }

  .bk-panel-title {
    font-size: 1.5rem;
  }

  .bk-panel-desc {
    font-size: .84rem;
  }

  /* Destination grid — 2 columns */
  .bk-dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bk-dest-card {
    height: 100px;
  }

  .bk-dest-name {
    font-size: .82rem;
  }

  .bk-dest-sub {
    font-size: .58rem;
  }

  /* Trip types — 4 per row */
  .bk-trip-types {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .bk-trip-type {
    padding: 10px 4px;
  }

  .bk-trip-type i {
    font-size: 1rem;
  }

  .bk-trip-type span {
    font-size: .62rem;
  }

  /* Nav row */
  .bk-nav-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .bk-btn-next,
  .bk-btn-back {
    padding: 11px 20px;
    font-size: .82rem;
  }

  .bk-step-indicator {
    font-size: .7rem;
  }

  /* Form rows — single column */
  .bk-form-row {
    grid-template-columns: 1fr;
  }

  /* Duration pills — wrap */
  .bk-duration-pills {
    flex-wrap: wrap;
    gap: 6px;
  }

  .bk-dur-pill {
    font-size: .74rem;
    padding: 6px 10px;
  }

  /* Addons — single column */
  .bk-addons {
    grid-template-columns: 1fr;
  }

  /* Budget — single column */
  .bk-budget-opts {
    grid-template-columns: 1fr;
  }

  /* Sidebar hidden on mobile, show below */
  .bk-layout {
    grid-template-columns: 1fr;
  }

  .bk-sidebar {
    height: auto;
  }

  .bk-summary-img {
    height: 180px;
  }
}

@media (max-width: 400px) {

  .bk-trip-types {
    grid-template-columns: repeat(4, 1fr);
  }

  .bk-dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bk-dest-card {
    height: 90px;
  }

  .bk-panel-title {
    font-size: 1.3rem;
  }
}

/* ================================================================
   BOOKING HERO — MOBILE FIX (final)
   ================================================================ */
@media (max-width: 700px) {

  .bk-hero {
    height: auto;
    min-height: unset;
    overflow: hidden;
  }

  .bk-hero-content {
    position: relative;
    padding: 100px 0 36px 0;
    width: 100%;
  }

  .bk-hero-content .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 24px;
    padding: 0 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .bk-hero-content .container>[data-aos] {
    width: 100%;
  }

  .bk-hero-h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
    line-height: 1;
  }

  .bk-trust-badges {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px;
    flex-shrink: 0;
  }

  .bk-trust-badge {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 11px 14px;
    border-radius: 10px;
    gap: 10px;
    align-items: center;
  }

  .bk-trust-badge span {
    font-size: .82rem;
    line-height: 1.3;
  }
}

@media (max-width: 400px) {

  .bk-hero-content {
    padding: 90px 0 28px 0;
  }

  .bk-hero-h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .bk-trust-badge span {
    font-size: .76rem;
  }
}

/* ================================================================
   HOME PAGE — GALLERY & BLOG SECTIONS
   Paste this at the bottom of style.css
   ================================================================ */

/* ================================================================
   HOME GALLERY — BENTO GRID
   ================================================================ */

.home-gallery {
  padding: 100px 0;
  background: var(--ivory);
}

/* ── STRICT BENTO GALLERY LAYOUT ── */
.hg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
  margin-top: 10px;
  grid-auto-flow: dense;
}

/* Hero: top-left, 2 cols × 2 rows */
.hg-item.hg-hero {
  grid-column: span 2;
  grid-row: span 2;
}

/* Tall: single col, 2 rows */
.hg-item.hg-tall {
  grid-row: span 2;
}

/* Wide: 2 cols, 1 row */
.hg-item.hg-wide {
  grid-column: span 2;
}

/* ── ITEM BASE ── */
.hg-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  background: var(--black-2);
  display: block;
  width: 100%;
  height: 100%;
}

.hg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.22, .61, .36, 1), filter .4s;
  filter: brightness(.9) saturate(.95);
}

.hg-item:hover img {
  transform: scale(1.08);
  filter: brightness(.75) saturate(1.1);
}

/* ── OVERLAY ── */
.hg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 33, 58, .92) 0%,
      rgba(5, 33, 58, .2) 50%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px;
  opacity: 0;
  transition: opacity .38s var(--ease);
}

.hg-item:hover .hg-overlay {
  opacity: 1;
}

/* Keep overlay on hero even at rest — always visible at bottom */
.hg-hero .hg-overlay {
  opacity: 1;
  background: linear-gradient(to top,
      rgba(5, 33, 58, .88) 0%,
      transparent 55%);
}

.hg-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hg-tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 5px;
}

.hg-overlay h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  letter-spacing: .5px;
  line-height: 1.1;
  margin: 0;
}

.hg-hero .hg-overlay h4 {
  font-size: 1.5rem;
}

.hg-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s, background .25s;
}

.hg-item:hover .hg-expand {
  opacity: 1;
  transform: scale(1);
}

.hg-expand:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

/* ── MORE OVERLAY ── */
.hg-overlay-more {
  opacity: 1;
  background: rgba(5, 33, 58, .82);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.hg-more-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform .3s var(--ease);
}

.hg-item.hg-more:hover .hg-more-content {
  transform: scale(1.05);
}

.hg-more-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--amber);
  letter-spacing: 1px;
  line-height: 1;
}

.hg-more-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.hg-more-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: .74rem;
  font-weight: 700;
  transition: background .25s, transform .25s;
}

.hg-item.hg-more:hover .hg-more-cta {
  background: #00f2fe;
  transform: translateY(-2px);
}

/* ── HOME GALLERY LIGHTBOX ── */
.hg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(5, 10, 20, .96);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hg-lightbox.active {
  display: flex;
}

.hg-lb-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hg-lb-wrap img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
  transition: opacity .25s;
}

.hg-lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
}

.hg-lb-close:hover {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}

.hg-lb-prev,
.hg-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s;
}

.hg-lb-prev {
  left: -60px;
}

.hg-lb-next {
  right: -60px;
}

.hg-lb-prev:hover,
.hg-lb-next:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

.hg-lb-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hg-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Switch to 2 columns */
  }

  .bk-hero-content {
    padding: 130px 20px 60px;
  }

  .bk-hero-content .container {
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
  }

  /* Reset special sizes so they don't break small screens */
  .hg-item.hg-hero,
  .hg-item.hg-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .hg-grid {
    grid-template-columns: 1fr;
    /* Switch to 1 column */
    grid-auto-rows: auto;
  }

  .hg-item.hg-hero,
  .hg-item.hg-wide,
  .hg-item.hg-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}


/* ================================================================
   HOME BLOG — EDITORIAL LAYOUT
   ================================================================ */

.home-blog {
  padding: 100px 0;
  background: var(--ivory-2);
}

/* ── MAIN GRID: featured left + stack right ── */
.hb-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4px;
  margin-top: 10px;
  margin-bottom: 4px;
}

/* ── FEATURED POST ── */
.hb-featured {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s;
  align-self: stretch;
  /* Match height of right stack perfectly */
}

.hb-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark-lg);
  z-index: 10;
}

.hb-featured-img {
  position: relative;
  flex: 1;
  /* Stretch dynamically to fill empty space! */
  min-height: 260px;
  overflow: hidden;
}

.hb-featured-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: transform .7s var(--ease);
}

.hb-featured:hover .hb-featured-img img {
  transform: scale(1.06);
}

.hb-cat {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--black);
  padding: 5px 14px 5px 16px;
  border-radius: 0 20px 20px 0;
}

.hb-read-time {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: .68rem;
  font-weight: 600;
  background: rgba(5, 33, 58, .8);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, .8);
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hb-featured-body {
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hb-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  color: var(--slate);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.hb-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate-light);
  flex-shrink: 0;
}

.hb-featured-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: .5px;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hb-excerpt {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.hb-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ivory-3);
  gap: 10px;
}

.hb-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hb-author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
  flex-shrink: 0;
}

.hb-author-name {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--black);
}

.hb-author-role {
  display: block;
  font-size: .68rem;
  color: var(--slate);
}

.hb-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  transition: gap .25s;
  flex-shrink: 0;
}

.hb-featured:hover .hb-read-link,
.hb-card:hover .hb-read-link {
  gap: 10px;
}

/* ── STACK: right column ── */
.hb-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── CARD ── */
.hb-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: transform .32s var(--ease), box-shadow .32s, border-color .32s;
}

.hb-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
  border-color: transparent;
}

.hb-card-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.hb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.hb-card:hover .hb-card-img img {
  transform: scale(1.07);
}

.hb-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hb-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .3px;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hb-card-excerpt {
  font-size: .83rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 12px;
}

/* ── BOTTOM ROW: 3 mini cards ── */
.hb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.hb-mini {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  transition: transform .32s var(--ease), box-shadow .32s;
}

.hb-mini:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark);
  z-index: 10;
}

.hb-mini-img {
  width: 100px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.hb-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.hb-mini:hover .hb-mini-img img {
  transform: scale(1.08);
}

.hb-mini-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.hb-cat-sm {
  position: static;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  background: none;
  padding: 0;
  border-radius: 0;
}

.hb-mini-title {
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .3px;
  color: var(--black);
  line-height: 1.2;
  flex: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hb-grid {
    grid-template-columns: 1fr;
  }

  .hb-stack {
    flex-direction: row;
  }

  .hb-card {
    flex: 1;
  }

  .hb-featured-img {
    height: 220px;
  }
}

@media (max-width: 700px) {
  .home-blog {
    padding: 70px 0;
  }

  .hb-stack {
    flex-direction: column;
  }

  .hb-row {
    grid-template-columns: 1fr;
  }

  .hb-mini {
    flex-direction: column;
  }

  .hb-mini-img {
    width: 100%;
    height: 130px;
  }

  .hb-featured-title {
    font-size: 1.3rem;
  }
}


/* ================================================================
   FIXED SOCIAL SIDEBAR
   ================================================================ */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
}

.ssoc-pill {
  display: inline-flex;
  align-items: center;
  height: 40px;
  border-radius: 0 30px 30px 0;
  border-left: none;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  width: 40px;
  /* collapsed width = icon only */
  transition: width .38s cubic-bezier(.4, 0, .2, 1),
    box-shadow .3s;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Brand background colors */
.ssoc-pill[aria-label="Facebook"] {
  background: #1877f2;
}

.ssoc-pill[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.ssoc-pill[aria-label="Twitter"] {
  background: #000000;
}

.ssoc-pill[aria-label="YouTube"] {
  background: #ff0000;
}

.ssoc-pill[aria-label="WhatsApp"] {
  background: #25d366;
}

/* Hover: expand to show label */
.ssoc-pill:hover {
  width: 150px;
  box-shadow: 4px 0 20px rgba(0, 0, 0, .25);
}

/* Icon */
.ssoc-pill i {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  color: #ffffff;
  flex-shrink: 0;
}

/* Label */
.ssoc-pill span {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .4px;
  color: #ffffff;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s .1s,
    transform .25s .1s;
  padding-right: 14px;
}

.ssoc-pill:hover span {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}


/* ── Homestays Room Cards (Horizontal Split Layout) ── */
.hs-room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: row;
  transition: var(--tr);
  min-height: 320px;
  border: 1px solid var(--ivory-3);
  margin-bottom: 30px;
}

.hs-room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hs-room-card:last-child {
  margin-bottom: 0;
}

/* Left side: full image + overlay info */
.hs-room-img {
  position: relative;
  flex: 0 0 42%;
  min-height: 320px;
  overflow: hidden;
}

.hs-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  display: block;
}

.hs-room-card:hover .hs-room-img img {
  transform: scale(1.06);
}

/* Dark gradient overlay at bottom of image for text */
.hs-room-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
  pointer-events: none;
}

.hs-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--amber);
  color: #fff;
  padding: 5px 13px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Room name and bed info overlaid on image (bottom) */
.hs-img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 3;
}

.hs-room-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hs-location {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.hs-location i {
  color: var(--amber);
}

/* Right side: all content */
.hs-room-body {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.hs-desc {
  font-size: 0.95rem;
  color: var(--black-3);
  line-height: 1.65;
  margin: 0;
}

.hs-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 14px 0;
  border-top: 1px solid var(--ivory-3);
  border-bottom: 1px solid var(--ivory-3);
}

.hs-amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--black-2);
  font-weight: 500;
}

.hs-amenity i {
  color: var(--amber);
  font-size: 0.9rem;
}

.hs-rules {
  font-size: 0.88rem;
  color: var(--black-2);
  line-height: 1.6;
  background: var(--ivory-2);
  border-left: 3px solid var(--amber);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
}

.hs-rules strong {
  color: var(--black);
  font-weight: 600;
}

.hs-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--ivory-3);
  flex-wrap: wrap;
  gap: 12px;
}

.hs-price-block {
  display: flex;
  flex-direction: column;
}

.hs-price-label {
  font-size: 0.78rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hs-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--black);
  line-height: 1;
  margin-top: 3px;
}

.hs-extra-charges {
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hs-extra-charges i {
  color: var(--amber);
}

/* Horizontal rooms container — stack instead of grid */
.hs-rooms-list {
  display: flex;
  flex-direction: column;
}

/* Responsive: collapse to stacked vertical card on small screens */
@media (max-width: 768px) {
  .hs-room-card {
    flex-direction: column;
    min-height: auto;
  }

  .hs-room-img {
    flex: none;
    min-height: 240px;
  }

  .hs-room-body {
    padding: 22px 20px;
  }
}



/* ================================================================
   GLOBAL BUTTON CONSISTENCY — all pill shaped
   ================================================================ */
.btn-amber,
.btn-outline-amber,
.btn-ghost-white,
.hcta-primary,
.hcta-ghost,
.tfb-submit,
.hs-go,
.btn-submit,
.ribbon-cta,
.bk-btn-submit {
  border-radius: 30px;
}


/* ================================================================
   BREADCRUMB — GLOBAL POSITION OFFSET (all page heroes)
   ================================================================ */

.ct-hero-breadcrumb,
.pkg-hero-breadcrumb,
.gal-hero-breadcrumb,
.blog-hero-breadcrumb,
.bk-hero-breadcrumb,
.about-banner-content .breadcrumb {
  display: none;
}

/* ── TABLET ── */
/* @media (max-width: 960px) {
  .ct-hero-breadcrumb,
  .pkg-hero-breadcrumb,
  .gal-hero-breadcrumb,
  .blog-hero-breadcrumb,
  .about-banner-content .breadcrumb {
    top: -7px;
    left: -10px;
  }
} */

/* ── MOBILE ── */
/* @media (max-width: 600px) {
  .ct-hero-breadcrumb,
  .pkg-hero-breadcrumb,
  .gal-hero-breadcrumb,
  .blog-hero-breadcrumb,
  .about-banner-content .breadcrumb {
    top: -15px;
    left: -106px;
  }
} */

/* ── HOMESTAY BOOKING COMPONENT ── */
#hsBookingSection {
  padding-top: 0px;
  padding-bottom: 60px;
}

.hs-header-wrap {
  text-align: center;
  padding: 40px 0 40px;
}

.hs-header-wrap h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hs-header-wrap p {
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
}

#hsWizard .bk-steps-header {
  background: var(--ivory-2);
}

#hsWizard .bk-steps-title {
  color: var(--black);
}

.hs-panels {
  padding: 30px;
}

#hsRoom {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--ivory-3);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.hs-form-gap {
  margin-top: 20px;
}

#hsSubmitBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  align-self: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 30px;
  background: var(--amber);
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
}

#hsSubmitBtn:hover {
  background: var(--black);
  color: var(--white);
}

.hs-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.hs-success-ring-mod {
  margin: 0 auto 20px;
}

.hs-another-btn {
  margin-top: 20px;
}

.hs-sidebar-col .hs-sticky-card {
  position: sticky;
  top: 30px;
}

.hs-divider {
  margin-top: 12px;
}

/* ── HOMESTAY RESPONSIVE SETTINGS ── */
@media (max-width: 700px) {
  #hsBookingSection {
    padding-bottom: 30px;
  }

  .hs-header-wrap {
    padding: 30px 0 20px;
  }

  .hs-header-wrap h2 {
    font-size: 2.2rem;
  }

  .hs-panels {
    padding: 24px 20px;
  }
}