/* This File Use header Both */

.popup-overlay-booknow {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  display: flex;
  align-items: center;
  justify-content: center;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .3s ease;
  z-index: 9999;
}

.popup-overlay-booknow.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-box {
  background: #ffffff;
  /* 🔥 solid white */
  padding: 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Bhavith header update */
.right-menu .login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent !important;
  border: none !important;
  color: #2F2F2F !important;
  font-size: 16px;
  font-weight: 500;
  padding: 0 !important;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1;
}

.right-menu .login-btn:hover {
  background-color: transparent !important;
  color: #13357b !important;
}

.right-menu .login-btn i {
  font-size: 18px;
  color: #2F2F2F;
  transition: color 0.3s ease;
}

.right-menu .login-btn:hover i {
  color: #13357b;
}

/* Mobile-only responsive button */
.right-menu .login-btn-mobile {
  display: none;
}

/* Align and space helpline dropdown with the call button */
.right-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .right-menu .login-btn {
    display: none !important;
  }

  .right-menu .login-btn-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border: none !important;
    color: #2F2F2F !important;
    text-decoration: none;
    padding: 8px !important;
    transition: color 0.3s ease;
  }

  .right-menu .login-btn-mobile:hover {
    color: #13357b !important;
  }

  .right-menu .login-btn-mobile i {
    font-size: 18px;
    color: #2F2F2F;
    transition: color 0.3s ease;
  }

  .right-menu .login-btn-mobile:hover i {
    color: #13357b;
  }

  .right-menu {
    gap: 15px;
    padding-right: 5px;
  }
}

/* Helpline dropdown styling */
.right-menu .dropdown.helpline {
  position: relative;
  display: inline-block;
}

.right-menu .dropdown.helpline .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2F2F2F !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.right-menu .dropdown.helpline .dropdown-toggle:hover {
  color: #13357b !important;
}

.right-menu .dropdown.helpline .dropdown-toggle i {
  font-size: 16px;
  color: #2F2F2F;
}

.right-menu .dropdown.helpline .dropdown-toggle:hover i {
  color: #13357b;
}

/* Show dropdown menu on hover */
.right-menu .dropdown.helpline:hover .dropdown-menu {
  display: block !important;
}

.right-menu .dropdown.helpline .dropdown-menu {
  margin-top: 8px !important;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  width: auto !important;
  min-width: 160px;
  left: auto !important;
  right: 0 !important;
}

.right-menu .dropdown.helpline .dropdown-menu li {
  list-style: none;
}

.right-menu .dropdown.helpline .dropdown-menu li a.dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  clear: both;
  font-weight: 500;
  color: #2F2F2F !important;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-size: 14px;
}

/* Bhavith slider fix */
.carousel-header .carousel-inner .carousel-item {
  height: 480px !important;
  min-height: auto !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Hero slider: fix img-fluid height:auto conflict + anchor absolute img */
.carousel-header .carousel-inner .carousel-item img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  max-width: none !important;
  /* override img-fluid max-width */
}

@media(max-width:991px) {
  .carousel-header .carousel-inner .carousel-item {
    height: 350px !important;
  }
}

@media(max-width:480px) {
  .carousel-header .carousel-inner .carousel-item {
    height: 260px !important;
  }
}

/* Category Slider Image Fix */
.product_block {
  overflow: hidden !important;
  border-radius: 0 !important;
  /* slider handles top clipping */
  width: 100% !important;
  height: 280px !important;
  min-height: 280px !important;
  position: relative !important;
}

.product_block img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  will-change: transform !important;
  transform: translateZ(0) !important;
}

/* Space Between Name & Price */
.product_name h3 {
  margin-bottom: 10px !important;
}

/* Bhavith slider fix end BHV */

/* ============================================================
   Airbnb-style Product Card Corners
   ============================================================ */

/* 1. Full card: all-four rounded corners, no harsh border */
ul.products>li {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10) !important;
  transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: #fff !important;
  will-change: transform, box-shadow !important;
}

/* Subtle lift on hover — like Airbnb */
ul.products>li:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14) !important;
  transform: translateY(-2px) !important;
}

/* 2. Image slider: clip to card's top corners only */
ul.products>li .product_slider {
  border-radius: 12px 12px 0 0 !important;
  overflow: hidden !important;
  will-change: transform;
  transform: translateZ(0);
}

.owl-carousel .owl-stage {
  will-change: transform !important;
  transform: translateZ(0);
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* 3. Reset any leftover bottom-only radius from developer.css */
ul.products>li .product_det {
  border-radius: 0 0 12px 12px !important;
}

/* 4. Custom Listings Product Cards (.unique_box & .product_slider) - Airbnb-style corners */
.unique_box .product_slider {
  border-radius: 12px !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.unique_box .product_slider img,
.unique_box .product_slider .product_block {
  border-radius: 12px !important;
}

/* If the card itself is styled as a full box on mobile/tablet, make sure the slider only rounds the top corners */
@media (max-width: 991px) {
  .unique_box {
    border-radius: 12px !important;
  }

  .unique_box .product_slider {
    border-radius: 12px 12px 0 0 !important;
  }

  .unique_box .product_slider img,
  .unique_box .product_slider .product_block {
    border-radius: 12px 12px 0 0 !important;
  }
}

/* ============================================================ */

/* Bhavith smooth scroll - prevent native scroll from fighting Lenis */
html.lenis,
html.lenis body {
  height: auto !important;
}

/* Force hardware acceleration and remove background-attachment: fixed which tanks scroll FPS */
* {
  background-attachment: scroll !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Bhavith smooth scroll end BHV */

/* Bhavith burger menu - Homepage mobile nav */

/* Hamburger button */
.gojawai-hamburger {
  background: none;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  font-size: 22px;
  color: #2F2F2F;
  transition: color 0.3s ease;
  line-height: 1;
  display: none;
}

.gojawai-hamburger:hover {
  color: #13357b;
}

/* Show only on mobile */
@media (max-width: 991px) {
  .gojawai-hamburger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* Dark overlay */
.gojawai-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
}

.gojawai-menu-overlay.active {
  display: block;
}

/* Side drawer */
.gojawai-side-menu {
  position: fixed;
  top: 0;
  left: -340px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.gojawai-side-menu.active {
  left: 0;
}

/* Drawer header: logo + close */
.gojawai-side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

/* Close button */
.gojawai-close-btn {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #2F2F2F;
  padding: 0 4px;
  transition: color 0.2s ease;
}

.gojawai-close-btn:hover {
  color: #13357b;
}

/* Nav links section */
.gojawai-side-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.gojawai-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  text-decoration: none;
  color: #2F2F2F;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.gojawai-menu-link:hover {
  background: #f8f9fa;
  color: #13357b;
  padding-left: 32px;
}

.gojawai-menu-link i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #13357b;
}

/* Drawer footer: call link */
.gojawai-side-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
}

.gojawai-call-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #13357b;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.gojawai-call-link:hover {
  color: #0a2259;
}

/* Bhavith burger menu end BHV */

/* changed by BHV: use header pill nav on all screens; hide old bordered carousel nav */
.carousel-header .cstm-nav-bar {
  display: none !important;
}




/* ============================================================ */

/* Starts from text on product cards */
.starts-from {
  font-size: 13px !important;
  color: #777 !important;
  font-weight: 500 !important;
  margin-right: 2px;
}

/* ---------------------------------------------------
   Native Mobile Smooth Scrolling for Category Slider
------------------------------------------------------ */
@media (max-width: 575px) {
  .citytour_carousel.native-mobile-scroll {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    padding-bottom: 10px;
    /* Space for scrollbar if any */
  }

  /* Hide scrollbar for a clean look */
  .citytour_carousel.native-mobile-scroll::-webkit-scrollbar {
    display: none;
  }

  .citytour_carousel.native-mobile-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .citytour_carousel.native-mobile-scroll .item {
    scroll-snap-align: start;
    flex: 0 0 28.5vw !important;
    /* Forces exactly 3.5 items */
    width: 28.5vw !important;
    margin-right: 10px;
    /* match owlcarousel margin */
  }
}

/* =====================================================
/* =====================================================
   THE GOJAWAI DIFFERENCE: EDITORIAL REDESIGN BHV
   Premium Safari / Wilderness Brand Aesthetic
   ===================================================== */

.gojawai_difference_section {
  background-color: #f7f3eb !important;
  /* Warm sand/ivory */
  /* changed by BHV: reduced top/bottom free space for GoJawai Difference section */
  padding: 80px 0 !important;
  position: relative;
  overflow: hidden;
}

/* Atmospheric Texture Hint */
.gojawai_difference_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
  opacity: 0.3;
  pointer-events: none;
}

/* 1. EDITORIAL INTRO (LEFT) */
.editorial_intro {
  position: relative;
}

.editorial_eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #A68B5B;
  /* Muted Safari Gold */
  margin-bottom: 25px;
}

.editorial_heading {
  font-size: 64px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  line-height: 1.1 !important;
  margin-bottom: 35px !important;
  letter-spacing: -0.02em !important;
}

.editorial_accent_line {
  width: 40px;
  height: 2px;
  background-color: #A68B5B;
  margin-bottom: 35px;
}

.editorial_lead {
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: #4a4a4a !important;
  max-width: 420px !important;
  margin-bottom: 45px !important;
  font-weight: 400 !important;
}

.editorial_badge {
  display: inline-flex;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(166, 139, 91, 0.3);
}

.badge_text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1a1a1a;
}

/* 2. STAGGERED FEATURES GRID (RIGHT) */
.staggered_features_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
}

.feature_card_wrapper {
  position: relative;
}

/* Staggering effects */
.stagger_2 {
  transform: translateY(60px);
}

.stagger_4 {
  transform: translateY(60px);
}

.editorial_feature_card {
  background: transparent;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(166, 139, 91, 0.12);
  /* Very subtle gold border */
  height: 100%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.editorial_feature_card:hover {
  border-color: rgba(166, 139, 91, 0.4);
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.feature_icon_box {
  width: 48px;
  height: 48px;
  background: rgba(166, 139, 91, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #1a1a1a;
  font-size: 18px;
}

.feature_title {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-bottom: 15px !important;
  letter-spacing: 0.01em !important;
}

.feature_divider {
  width: 20px;
  height: 1px;
  background: rgba(166, 139, 91, 0.4);
  margin-bottom: 15px;
}

.feature_desc {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #666 !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

/* 3. RESPONSIVE REFINEMENTS */
@media (max-width: 991px) {
  .gojawai_difference_section {
    padding: 60px 0 !important;
  }

  .editorial_heading {
    font-size: 48px !important;
  }

  .editorial_lead {
    max-width: 100% !important;
  }

  .staggered_features_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stagger_2,
  .stagger_4 {
    transform: none;
  }

  .editorial_feature_card {
    padding: 30px;
  }
}

@media (max-width: 767px) {

  /* changed by BHV: keep difference cards in compact mobile grid */
  .gojawai_difference_section {
    padding: 28px 0 32px !important;
    margin-bottom: 28px !important;
  }

  .editorial_eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
  }

  .editorial_heading {
    font-size: 44px !important;
    line-height: 1.06 !important;
    margin-bottom: 16px !important;
  }

  .editorial_accent_line {
    margin-bottom: 16px;
  }

  .editorial_lead {
    font-size: 14px !important;
    line-height: 1.58 !important;
    margin-bottom: 18px !important;
    max-width: 100% !important;
  }

  .badge_text {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .staggered_features_grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .editorial_feature_card {
    padding: 16px !important;
  }

  .feature_icon_box {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .feature_title {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }

  .feature_divider {
    margin-bottom: 8px;
  }

  .feature_desc {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  /* changed by BHV: gap between GoJawai Difference grid and Experience Jawai section */
  .luxury_welcome_section {
    padding-top: 24px !important;
  }

  .luxury_welcome_section .welcome_content_col {
    margin-top: 20px !important;
  }

  .luxury_welcome_section .welcome_editorial_panel {
    margin-top: 0 !important;
    width: 100% !important;
  }
}

/* =====================================================
   WELCOME TO GOJAWAI: PROFESSIONAL POLISH BHV
   Art-Directed Editorial Composition
   ===================================================== */

.luxury_welcome_section {
  /* changed by BHV: reduced top/bottom free space in homepage welcome section */
  padding: 60px 0 !important;
  /* Prestigious breathing room */
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}

/* 1. REFINED CINEMATIC FRAME */
.welcome_image_cinematic {
  position: relative;
  padding-right: 40px;
  z-index: 1;
}

.welcome_image_cinematic img {
  width: 100%;
  height: 640px;
  /* Refined height for better visual balance */
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 25px 70px rgba(58, 49, 40, 0.1);
}

.image_frame_accent {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 160px;
  height: 160px;
  border-left: 1.5px solid #C8A96B;
  /* Thinner, more elegant accent */
  border-top: 1.5px solid #C8A96B;
  z-index: -1;
  opacity: 0.4;
}

/* 2. POLISHED EDITORIAL PANEL */
.welcome_content_col {
  position: relative;
  z-index: 5;
  margin-left: -140px;
  /* Stronger, intentional editorial overlap */
}

.welcome_editorial_panel {
  background: #f7f4ef;
  padding: 65px 60px;
  /* Reduced excess padding for tighter rhythm */
  border-radius: 2px;
  /* Sharper, more editorial corners */
  box-shadow: 0 35px 90px rgba(58, 49, 40, 0.08);
  /* Softer, micro-luxury shadow */
  position: relative;
  border: 1px solid rgba(200, 169, 107, 0.1);
  /* Subtle gold-tinted border */
}

.panel_label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C8A96B;
  margin-bottom: 25px;
}

.panel_title {
  font-size: 48px !important;
  /* Slightly more balanced scale */
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1.1 !important;
  margin-bottom: 30px !important;
  letter-spacing: -0.02em !important;
}

.panel_divider {
  width: 45px;
  height: 1.5px;
  background: #C8A96B;
  margin-bottom: 35px;
}

.panel_text {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #5a5a5a !important;
  margin-bottom: 22px !important;
  max-width: 480px !important;
  /* Improved readability width */
  font-weight: 400 !important;
}

/* 3. BREATHEABLE FEATURE LIST */
.luxury_check_list {
  list-style: none !important;
  padding: 0 !important;
  margin: 35px 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  /* Better column spacing */
}

.luxury_check_list li {
  font-size: 13.5px !important;
  color: #1a1a1a !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.list_marker {
  width: 10px;
  height: 1px;
  background: #C8A96B;
  flex-shrink: 0;
  opacity: 0.7;
}

/* 4. SOPHISTICATED CTA */
.panel_action {
  margin-top: 45px;
}

.btn_luxury_editorial {
  display: inline-block;
  padding: 16px 42px;
  background: #1a1a1a;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 2px;
  text-decoration: none !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #1a1a1a;
}

.btn_luxury_editorial:hover {
  background: transparent;
  color: #1a1a1a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* 5. RESPONSIVE REFINEMENT */
@media (max-width: 1199px) {
  .welcome_content_col {
    margin-left: -80px;
  }

  .welcome_editorial_panel {
    padding: 50px 45px;
  }

  .panel_title {
    font-size: 40px !important;
  }
}

@media (max-width: 991px) {
  .luxury_welcome_section {
    padding: 70px 0 !important;
  }

  .welcome_image_cinematic {
    padding-right: 0;
    margin-bottom: 0;
  }

  .welcome_image_cinematic img {
    height: 480px;
  }

  .welcome_content_col {
    margin-left: 0;
    margin-top: 24px;
    /* changed by BHV: no overlap into section above on tablet/mobile */
  }

  .welcome_editorial_panel {
    padding: 45px 35px;
    width: 92%;
    margin: 0 auto;
  }

  .luxury_check_list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =====================================================
   LUXURY SAFARI FOOTER: REFINED HOSPITALITY
   Earthy Night Tones & Cinematic Minimalism
   ===================================================== */

.safari_footer {
  background: #1a1714 !important;
  /* Rich Earthy Charcoal (Safari Night) */
  padding: 100px 0 60px !important;
  color: #f7f4ef !important;
  /* Luxury Ivory */
  position: relative;
  overflow: hidden;
}

/* 1. FOOTER GRID LAYOUT */
.footer_main_grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer_column {
  display: flex;
  flex-direction: column;
}

/* 2. BRAND ESSENCE COLUMN */
.footer_wordmark {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
  letter-spacing: 0.1em;
}

.wordmark_main {
  font-size: 28px;
  font-weight: 600;
  color: #f7f4ef;
  /* Luxury Ivory */
  letter-spacing: 0.35em;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  /* Clean, prestigious foundation */
}

.wordmark_sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: #C8A96B;
  /* Signature Gold */
  opacity: 0.8;
}

.brand_mission {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: rgba(247, 244, 239, 0.65) !important;
  /* Slightly softer for better hierarchy */
  margin-bottom: 35px !important;
  font-weight: 400 !important;
  max-width: 320px;
}

.footer_social_minimal {
  display: flex;
  gap: 20px;
}

.footer_social_minimal a {
  color: rgba(247, 244, 239, 0.6) !important;
  font-size: 18px;
  transition: all 0.4s ease;
  text-decoration: none !important;
}

.footer_social_minimal a:hover {
  color: #C8A96B !important;
  /* Gold on hover */
  transform: translateY(-3px);
}

/* 3. FOOTER TYPOGRAPHY & LINKS */
.footer_heading {
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.25em !important;
  color: #C8A96B !important;
  margin-bottom: 35px !important;
}

.footer_links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer_links li {
  margin-bottom: 18px;
}

.footer_links a {
  color: rgba(247, 244, 239, 0.75) !important;
  font-size: 14px !important;
  text-decoration: none !important;
  font-weight: 400 !important;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer_links a:hover {
  color: #ffffff !important;
  padding-left: 8px;
}

.footer_links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: #C8A96B;
  transition: all 0.3s ease;
}

.footer_links a:hover::before {
  width: 5px;
}

/* 4. PAYMENTS & SUPPORT REFINEMENT */
.footer_payments_minimal {
  margin-top: 40px;
}

.payment_label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247, 244, 239, 0.4);
  margin-bottom: 15px;
}

.payment_icons_row {
  display: flex;
  gap: 15px;
  font-size: 24px;
  color: rgba(247, 244, 239, 0.3);
}

.payment_icons_row i {
  transition: color 0.3s ease;
}

.payment_icons_row i:hover {
  color: rgba(247, 244, 239, 0.8);
}

/* 5. BOTTOM INTEGRATED AREA */
.footer_bottom_integrated {
  position: relative;
}

.footer_divider {
  height: 1px;
  background: rgba(247, 244, 239, 0.1);
  margin-bottom: 40px;
}

.copyright_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright_text {
  font-size: 13px !important;
  color: rgba(247, 244, 239, 0.4) !important;
  margin: 0 !important;
}

.curated_by {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(200, 169, 107, 0.6);
}

/* 6. RESPONSIVE ORCHESTRATION */
@media (max-width: 1199px) {
  .footer_main_grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 991px) {
  .footer_main_grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .brand_essence {
    grid-column: span 2;
    margin-bottom: 40px;
    text-align: center;
    align-items: center;
  }

  .brand_mission {
    max-width: 100%;
  }
}

/* =====================================================
   UNIFIED MOBILE EXPERIENCE REFINEMENT
   Ensuring Luxury Rhythm on Small Screens
   ===================================================== */

@media (max-width: 767px) {
  .luxury-nav-strip {
    margin-bottom: 0px;
  }

  /* 1. Global Scaling */
  .luxury_difference_asymmetric {
    padding: 56px 0 !important;
  }

  .luxury_welcome_section {
    padding: 32px 0 56px !important;
    margin-top: 0 !important;
  }

  .gojawai_difference_section {
    margin-bottom: 28px !important;
  }

  /* 2. The GoJawai Difference (Mobile) */
  .editorial_title {
    font-size: 42px !important;
    /* Refined scale for small phones */
    margin-bottom: 25px !important;
  }

  .editorial_description {
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
  }

  .benefit_promise {
    padding: 40px 30px !important;
  }

  /* 3. Welcome to GoJawai (Mobile) */
  /* changed by BHV: compact typography for Experience Jawai section on mobile */
  .panel_label {
    font-size: 9px !important;
    letter-spacing: 0.3em;
    margin-bottom: 14px;
  }

  .panel_title {
    font-size: 26px !important;
    /* Cinematic but readable */
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
  }

  .panel_text {
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
  }

  .welcome_editorial_panel {
    margin-top: 0 !important;
    width: 100% !important;
    padding: 28px 20px !important;
  }

  .luxury_check_list {
    margin: 20px 0 !important;
    gap: 10px 14px;
  }

  .luxury_check_list li {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .btn_luxury_editorial {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 12px 18px;
  }

  /* 4. Footer (Mobile) */
  .footer_wordmark .wordmark_main {
    font-size: 24px;
    letter-spacing: 0.3em;
  }

  .footer_column {
    margin-bottom: 10px;
  }

  .footer_heading {
    margin-bottom: 20px !important;
    font-size: 12px !important;
  }

  .footer_links li {
    margin-bottom: 14px;
  }
}

/* Extra Small Phones Refinement */
@media (max-width: 480px) {
  .editorial_title {
    font-size: 36px !important;
  }

  .panel_title {
    font-size: 28px !important;
  }

  .welcome_image_cinematic img {
    height: 380px !important;
  }

  .btn_luxury_editorial {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }
}

/* Luxury Concierge Block */
.header-concierge-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px 6px 6px;
  border-radius: 40px;
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-concierge-block:hover {
  background: #FAF9F7;
  border-color: rgba(200, 169, 107, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.concierge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.1);
  color: #C8A96B;
  transition: all 0.4s ease;
}

/* changed by BHV: keep phone icon circle unchanged on hover (text can still highlight) */
.header-concierge-block:hover .concierge-icon {
  background: rgba(200, 169, 107, 0.1);
  color: #C8A96B;
}

.header-concierge-block:hover .concierge-icon i {
  color: #C8A96B !important;
}

.header-concierge-block:hover .concierge-number {
  color: #2F2F2F;
}

.concierge-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.concierge-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 2px;
  font-weight: 500;
  white-space: nowrap;
}

.concierge-number {
  font-size: 13px;
  font-weight: 500;
  color: #3A3128;
  letter-spacing: 0.02em;
  white-space: nowrap;
}


/* Force parent containers to allow sticky positioning */
html,
body {
  overflow-x: clip !important;
  /* Modern alternative to hidden that doesn't break sticky */
  overflow-y: visible !important;
  height: auto !important;
}

.tour-section,
.tour-section .container,
.tour-content {
  overflow: visible !important;
}

/* Sticky sidebar for detail page (Desktop) */
@media (min-width: 992px) {
  .tour-right {
    position: relative;
    /* Acts as the "track" for the sticky wrapper */
  }

  .sticky-sidebar-wrapper {
    position: -webkit-sticky;
    /* Safari support */
    position: sticky;
    top: 90px;
    /* Offset to clear the header */
    z-index: 100;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, top;
  }

  /* Subtle enhance sidebar cards */
  .sticky-sidebar-wrapper .tour-card {
    margin-bottom: 0;
    /* Managed by wrapper gap */
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
  }

  /* Advanced Sticky Enhancement (toggled via JS) */
  .sticky-sidebar-wrapper.is-sticky-active .tour-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.08);
  }
}

/* Sticky sidebar end BHV */

/* Mobile Sticky Footer Host (BHV) */
#gojawai-persistent-cta-host {
  display: none !important;
}

@media (max-width: 991px) {
  #gojawai-persistent-cta-host {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483647 !important;
  }
}

/* Mobile Sticky Footer Host end (BHV) */


/* Customer Bought Copied by BHV */
/* =====================================================
   CUSTOMERS ALSO BOUGHT - MOBILE LUXURY REDESIGN
   ===================================================== */
@media (max-width: 768px) {

  /* Section Container */
  #gj-cust-bought-section {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
  }

  /* Header Refinement */
  #gj-cust-bought-section .cust-bought-header {
    padding: 0 20px !important;
    margin-bottom: 18px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  #gj-cust-bought-section .cust-bought-header h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #2F2F2F !important;
    font-family: "Montserrat", sans-serif !important;
    margin: 0 !important;
    letter-spacing: -0.3px !important;
  }

  /* See All Link */
  .cust-bought-see-all {
    font-size: 13px !important;
    color: #C8A96B !important;
    text-decoration: none !important;
    font-weight: 600 !important;
  }

  /* Swiper Container */
  #gj-cust-bought-section .customerSwiper {
    padding: 0 20px 20px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #gj-cust-bought-section .swiper-slide {
    width: 44vw !important;
    /* Fit ~2.2 cards to match reference */
    height: auto !important;
  }

  /* The Card Design (Flat, no wrapper styling) */
  #gj-cust-bought-section .card {
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    transform: translateZ(0) !important;
    padding: 0 !important;
  }

  #gj-cust-bought-section .swiper-slide a {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
    height: 100% !important;
  }

  /* Image Styling (Perfect Square, Rounded Corners) */
  #gj-cust-bought-section .card img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    border: none !important;
    margin-bottom: 8px !important;
  }

  /* Content Area */
  #gj-cust-bought-section .card-content {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  /* Empty Category Cleaner */
  #gj-cust-bought-section .card-content .category {
    display: none !important;
  }

  /* Location/Rating Row (matches Icon + Location in ref) */
  #gj-cust-bought-section .card-content .rating {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #777 !important;
    margin: 0 0 4px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  #gj-cust-bought-section .card-content .rating i {
    color: #eab308 !important;
    /* Yellow colored star */
    font-size: 10px !important;
  }

  #gj-cust-bought-section .card-content .rating span {
    color: #888 !important;
    font-weight: 400 !important;
    font-size: 11px !important;
  }

  /* Title */
  #gj-cust-bought-section .card-content .title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
    font-family: "Montserrat", sans-serif !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* Supporting Info (Date equivalent in ref) */
  #gj-cust-bought-section .card-content .instant {
    font-size: 12px !important;
    color: #888 !important;
    margin: 0 0 6px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
  }

  #gj-cust-bought-section .card-content .instant i {
    display: none !important;
    /* Hide bolt to look cleaner */
  }

  /* Price Section */
  #gj-cust-bought-section .card-content .price {
    font-size: 12px !important;
    color: #555 !important;
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
    text-align: left !important;
    font-weight: 500 !important;
  }

  #gj-cust-bought-section .card-content .price strong {
    font-size: 13px !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
  }

  /* Hide Navigation Elements on Mobile */
  #gj-cust-bought-section .swiper-button-prev,
  #gj-cust-bought-section .swiper-button-next,
  #gj-cust-bought-section .cust-bought-dots {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  /* Reference Style Like Button (overriding injected buttons) */
  #gj-cust-bought-section .card {
    position: relative !important;
  }

  #gj-cust-bought-section .card>*:not(img):not(.card-content) {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
    z-index: 10 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #gj-cust-bought-section .card>*:not(img):not(.card-content) i,
  #gj-cust-bought-section .card>*:not(img):not(.card-content) svg,
  #gj-cust-bought-section .card>*:not(img):not(.card-content)::before,
  #gj-cust-bought-section .card>*:not(img):not(.card-content)::after {
    color: #fff !important;
    fill: #fff !important;
    font-size: 12px !important;
  }
}

/* =====================================================
   CUSTOMERS ALSO BOUGHT - DESKTOP LUXURY REDESIGN
   ===================================================== */
/* Swiper Navigation Arrows (Global) */
#gj-cust-bought-section .swiper-button-next,
#gj-cust-bought-section .swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  background: #fff !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  margin-top: -60px !important;
  z-index: 100 !important;
}

#gj-cust-bought-section .swiper-button-next::after,
#gj-cust-bought-section .swiper-button-prev::after {
  font-size: 16px !important;
  color: #1a1a1a !important;
  font-weight: bold !important;
}

#gj-cust-bought-section .swiper-button-next {
  right: 15px !important;
}

#gj-cust-bought-section .swiper-button-prev {
  left: 15px !important;
}

@media (min-width: 769px) {

  /* Main Section Container */
  #gj-cust-bought-section {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  /* Header */
  #gj-cust-bought-section .cust-bought-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 24px !important;
    padding: 0 !important;
  }

  #gj-cust-bought-section .cust-bought-header h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    font-family: "Montserrat", sans-serif !important;
    margin: 0 !important;
  }

  .cust-bought-see-all {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #C8A96B !important;
    text-decoration: none !important;
  }

  /* Swiper Container */
  #gj-cust-bought-section .customerSwiper {
    padding: 10px 0 !important;
    margin: 0 !important;
  }

  /* Cards */
  #gj-cust-bought-section .customerSwiper .card {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding: 0 !important;
    transform: none !important;
  }

  #gj-cust-bought-section .customerSwiper .swiper-slide a {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
    height: 100% !important;
  }

  /* Image */
  #gj-cust-bought-section .card img {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-bottom: 16px !important;
    border: none !important;
  }

  /* Content Area */
  #gj-cust-bought-section .card-content {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  /* Rating */
  #gj-cust-bought-section .card-content .rating {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #888 !important;
    margin: 0 0 6px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  #gj-cust-bought-section .card-content .rating i {
    color: #eab308 !important;
    /* Yellow star as requested */
    font-size: 11px !important;
  }

  /* Title */
  #gj-cust-bought-section .card-content .title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.4 !important;
    font-family: "Montserrat", sans-serif !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* Instant */
  #gj-cust-bought-section .card-content .instant {
    font-size: 12px !important;
    color: #888 !important;
    margin: 0 0 16px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
  }

  #gj-cust-bought-section .card-content .instant i {
    color: #888 !important;
  }

  /* Price */
  #gj-cust-bought-section .card-content .price {
    font-size: 14px !important;
    color: #555 !important;
    margin-top: auto !important;
    padding-top: 0 !important;
    border-top: none !important;
    text-align: left !important;
    font-weight: 500 !important;
  }

  #gj-cust-bought-section .card-content .price strong {
    font-size: 18px !important;
    color: #1a1a1a !important;
    font-weight: 800 !important;
  }

  /* Like Button Override */
  #gj-cust-bought-section .card>*:not(img):not(.card-content) {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 32px !important;
    height: 32px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
    z-index: 10 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #gj-cust-bought-section .card>*:not(img):not(.card-content) i,
  #gj-cust-bought-section .card>*:not(img):not(.card-content) svg,
  #gj-cust-bought-section .card>*:not(img):not(.card-content)::before,
  #gj-cust-bought-section .card>*:not(img):not(.card-content)::after {
    color: #fff !important;
    fill: #fff !important;
    font-size: 14px !important;
  }


  /* Hide category */
  #gj-cust-bought-section .card-content .category {
    display: none !important;
  }
}

/* =====================================================
   HELP SECTION - LUXURY REDESIGN
   ===================================================== */


/* Premium Review Copied by BHV */
.review-wrapper {
  display: grid !important;
  grid-template-columns: 300px 1fr !important;
  gap: 30px !important;
  margin-bottom: 40px !important;
  background: linear-gradient(145deg, #2D2A26 0%, #24221F 100%) !important;
  /* Warm earthy charcoal */
  border: 1px solid rgba(200, 169, 107, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  padding: 40px !important;
  font-family: "Montserrat", sans-serif !important;
}

.review-wrapper .rating-section {
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Rating Section Overrides */
.review-wrapper .rating-section .tour-card {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  background: transparent !important;
}

.review-wrapper .highlights {
  width: 100% !important;
  margin-bottom: 25px !important;
}

.review-wrapper .rating-section .highlights h3 {
  font-size: 28px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 !important;
  text-align: left !important;
  border: none !important;
  line-height: 1.3 !important;
}

.review-wrapper .rating-section .highlights h3 span {
  display: block !important;
  color: #C8A96B !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  margin-top: 5px !important;
}

/* Overall Rating */
.review-wrapper .rating-score {
  flex: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  margin: 0 0 25px 0 !important;
}

.review-wrapper .rating-score .score {
  font-size: 64px !important;
  font-weight: 700 !important;
  color: #C8A96B !important;
  line-height: 1 !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -1px !important;
}

.review-wrapper .rating-score .star-rating {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  margin-bottom: 6px !important;
}

.review-wrapper .rating-score .star-rating i {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px !important;
  position: static !important;
  top: auto !important;
  margin: 0 !important;
}

.review-wrapper .rating-score .country {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
}

/* Rating Bars */
.review-wrapper .rating-bars {
  flex: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
}

.review-wrapper .rating-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

.review-wrapper .rating-label {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  width: 25px !important;
}

.review-wrapper .rating-label .fa-star {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 9px !important;
}

.review-wrapper .bar-container {
  flex: 1 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  height: 3px !important;
  border-radius: 3px !important;
  overflow: hidden !important;
  margin: 0 !important;
}

.review-wrapper .bar-container .bar {
  background: #C8A96B !important;
  height: 100% !important;
  border-radius: 3px !important;
}

.review-wrapper .rating-row .count {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  width: 20px !important;
  text-align: right !important;
}

/* Review Slider */
.review-wrapper .review-slider.swiper {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  position: relative !important;
  height: 100% !important;
  border-radius: 12px !important;
}

.review-wrapper .review-slide {
  height: auto !important;
}

.review-wrapper .tour-card.review-card,
.review-wrapper .review-card {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  height: 100% !important;
}

.review-wrapper .review-slide>.tour-card.review-card>.review-card {
  background: #35312C !important;
  /* Slightly lighter earthy charcoal */
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 16px !important;
  padding: 35px 30px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.4s ease, border-color 0.4s ease !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.review-wrapper .review-slide>.tour-card.review-card>.review-card:hover {
  border-color: rgba(200, 169, 107, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* Premium Quote Mark */
.review-wrapper .review-slide>.tour-card.review-card>.review-card::before {
  content: "“" !important;
  position: absolute !important;
  top: -10px !important;
  right: 20px !important;
  font-family: serif !important;
  font-size: 100px !important;
  color: rgba(200, 169, 107, 0.05) !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.review-wrapper .review-header {
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  position: relative !important;
  z-index: 2 !important;
}

.review-wrapper .review-header img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 1px solid rgba(200, 169, 107, 0.3) !important;
}

.review-wrapper .review-name {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.review-wrapper .review-date {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 3px !important;
}

.review-wrapper .review-header .star-rating {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-left: auto !important;
  border: none !important;
}

.review-wrapper .review-header .star-rating i {
  color: #C8A96B !important;
}

.review-wrapper .review-text {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-top: 0 !important;
  position: relative !important;
  z-index: 2 !important;
  font-weight: 300 !important;
}

.review-wrapper .review-text p {
  margin-bottom: 12px !important;
}

.review-wrapper .review-text p:last-child {
  margin-bottom: 0 !important;
}

.review-wrapper .review-text strong {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  display: block !important;
  margin-bottom: 8px !important;
  font-size: 15px !important;
}

/* Navigation Buttons */
.review-wrapper .review-slider .slider-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 32px !important;
  height: 32px !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: all 0.3s ease !important;
  font-size: 12px !important;
}

.review-wrapper .review-slider .slider-btn:hover {
  background: rgba(200, 169, 107, 0.1) !important;
  border-color: #C8A96B !important;
  color: #C8A96B !important;
}

.review-wrapper .review-slider .slider-btn.prev {
  left: 10px !important;
}

.review-wrapper .review-slider .slider-btn.next {
  right: 10px !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .review-wrapper {
    grid-template-columns: 1fr !important;
    padding: 30px !important;
    gap: 30px !important;
  }

  .review-wrapper .rating-section {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .review-wrapper .rating-score {
    margin-bottom: 0 !important;
    flex: 1 !important;
    min-width: 150px !important;
  }

  .review-wrapper .rating-bars {
    flex: 1 !important;
    min-width: 150px !important;
  }

  .review-wrapper .highlights {
    margin-bottom: 20px !important;
  }

  .review-wrapper .review-slider .slider-btn {
    display: flex !important;
  }
}

@media (max-width: 576px) {
  .review-wrapper .rating-section {
    flex-direction: column !important;
    gap: 20px !important;
  }
}

/* Map Section Copied by BHV */
/* =====================================================
   AIRBNB STYLE LOCATION SECTION
   ===================================================== */

.location-card-wrapper {
  padding: 40px 0 !important;
  /* Editorial spacing, no side padding needed for transparent */
  background: transparent !important;
  border-radius: 0 !important;
  margin-top: 25px !important;
  border: none !important;
  box-shadow: none !important;
}

.location-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 !important;
  letter-spacing: -0.4px;
}

.location-address {
  font-size: 15px !important;
  color: #666 !important;
  margin: 0 0 20px 0 !important;
  font-weight: 400;
}

.map-canvas-wrapper {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Softest possible edge for map */
  box-shadow: none !important;
}

.map-canvas-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: contrast(1.05) brightness(1.02);
  /* Slight enhancement */
}

.location-footer-note {
  font-size: 14px !important;
  color: #1a1a1a !important;
  font-weight: 600 !important;
  margin: 25px 0 0 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .map-canvas-wrapper {
    height: 320px;
  }

  .location-card-wrapper {
    padding: 25px 20px !important;
  }

  .location-title {
    font-size: 20px !important;
  }
}



/* Safari Concierge Panel Copied by BHV */
/* =====================================================
   SAFARI CONCIERGE PANEL (RESTRAINED LUXURY)
   ===================================================== */

.concierge-panel {
  background: transparent !important;
  /* Editorial List Style - Not a card */
  padding: 10px 0 30px 0 !important;
  /* Reduced top padding */
  border: none !important;
  box-shadow: none !important;
  margin-top: 20px !important;
  /* Reduced from 40px */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle editorial separator */
  position: relative;
  overflow: visible !important;
}

/* Hide legacy sidebar elements to prevent clutter */
.why-choose>h4,
.why-choose>ul {
  display: none !important;
}

.concierge-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #C8A96B;
  /* Restrained Safari Gold */
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.concierge-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-bottom: 15px !important;
  letter-spacing: -0.2px;
}

.concierge-description {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #777 !important;
  margin-bottom: 30px !important;
  font-style: italic;
  opacity: 0.9;
}

.concierge-feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  /* Tightened rhythm for embedded look */
  margin-bottom: 30px;
}

.concierge-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.concierge-feature-list .concierge-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  /* Clean Ivory Anchor */
  border: 1px solid rgba(200, 169, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.concierge-feature-list .concierge-icon i {
  color: #C8A96B;
  /* Luxury Gold instead of Green */
  font-size: 12px;
}

.concierge-content h5 {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 4px 0 !important;
}

.concierge-content p {
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #888 !important;
  margin: 0 !important;
}

.concierge-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.concierge-rating,
.concierge-cert {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.concierge-rating i {
  color: #C8A96B;
  margin-right: 4px;
}

.concierge-sep {
  color: #ccc;
  font-size: 10px;
}



/* Why Choose / Concierge Copied by BHV */
/* =====================================================
   SAFARI CONCIERGE PANEL (RESTRAINED LUXURY)
   ===================================================== */

.concierge-panel {
  background: transparent !important;
  /* Editorial List Style - Not a card */
  padding: 10px 0 30px 0 !important;
  /* Reduced top padding */
  border: none !important;
  box-shadow: none !important;
  margin-top: 20px !important;
  /* Reduced from 40px */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle editorial separator */
  position: relative;
  overflow: visible !important;
}

/* Hide legacy sidebar elements to prevent clutter */
.why-choose>h4,
.why-choose>ul {
  display: none !important;
}

.concierge-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #C8A96B;
  /* Restrained Safari Gold */
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.concierge-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-bottom: 15px !important;
  letter-spacing: -0.2px;
}

.concierge-description {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #777 !important;
  margin-bottom: 30px !important;
  font-style: italic;
  opacity: 0.9;
}

.concierge-feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  /* Tightened rhythm for embedded look */
  margin-bottom: 30px;
}

.concierge-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.concierge-feature-list .concierge-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  /* Clean Ivory Anchor */
  border: 1px solid rgba(200, 169, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.concierge-feature-list .concierge-icon i {
  color: #C8A96B;
  /* Luxury Gold instead of Green */
  font-size: 12px;
}

.concierge-content h5 {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 4px 0 !important;
}

.concierge-content p {
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #888 !important;
  margin: 0 !important;
}

.concierge-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.concierge-rating,
.concierge-cert {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.concierge-rating i {
  color: #C8A96B;
  margin-right: 4px;
}

.concierge-sep {
  color: #ccc;
  font-size: 10px;
}



/* Help Section Copied by BHV */
/* =====================================================
   HELP SECTION - LUXURY REDESIGN
   ===================================================== */
.help-section.tour-card {
  background: #fdfbf7 !important;
  border: 1px solid rgba(200, 169, 107, 0.15) !important;
  border-radius: 16px !important;
  padding: 0 !important;
  margin: 60px 0 !important;
  overflow: hidden !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03) !important;
  position: relative !important;
}

.help-grid {
  display: grid !important;
  grid-template-columns: 45fr 55fr !important;
  align-items: center !important;
}

.help-image {
  height: 420px !important;
  /* Tighter height */
  position: relative !important;
  overflow: hidden !important;
}

/* Remove the harsh blur, replace with a very subtle dark vignette on the edge for cinematic depth */
.help-image::after {
  content: "" !important;
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30% !important;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.15)) !important;
  pointer-events: none !important;
}

.help-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.help-content {
  padding: 40px 60px !important;
  text-align: left !important;
}

.help-subtitle {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  color: #C8A96B !important;
  margin-bottom: 12px !important;
}

.help-section.tour-card h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  font-family: "Montserrat", sans-serif !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

.help-section.tour-card p {
  font-size: 16px !important;
  color: #555 !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
  font-family: "Montserrat", sans-serif !important;
}

.help-section.tour-card .callback-btn {
  background: #1a1a1a !important;
  color: #fff !important;
  border: none !important;
  padding: 13px 34px !important;
  border-radius: 40px !important;
  /* Soft pill shape */
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.help-section.tour-card .callback-btn:hover {
  background: #2a2a2a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
  color: #fff !important;
}

/* Trust Row Refinement */
.help-trust-row {
  margin-top: 20px !important;
  font-size: 11px !important;
  color: #888 !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.help-trust-row::before {
  content: "\f058" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  color: #C8A96B !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .help-grid {
    grid-template-columns: 1fr !important;
  }

  .help-image {
    height: 280px !important;
  }

  .help-image::after {
    width: 100% !important;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15)) !important;
  }

  .help-content {
    padding: 40px 30px !important;
    text-align: center !important;
  }

  .help-content .callback-btn {
    margin: 0 auto !important;
    display: block !important;
  }

  .help-trust-row {
    justify-content: center !important;
  }
}

/* ========================================================= */
/* STANDARDIZED FONT SIZES (Overview, Tabs, Inclusions, FAQ, Form) Copied by BHV */
/* ========================================================= */
.highlights p,
.trek-container,
.trek-container p,
.trek-container span,
.trek-container div,
.trek-container ul,
.trek-container li,
.custom-list li,
.custom-list li span,
.tab-content,
.tab-content p,
.tab-content span,
.tab-content div,
.tab-content ul,
.tab-content li,
.accordion-body,
.accordion-body p,
.accordion-body span,
.accordion-body div,
.accordion-body ul,
.accordion-body li,
.inclusion-list li,
.inclusion-list li span,
.inclusion.included,
.inclusion.included *,
.faq-question,
.faq-answer,
.faq-section .faq-answer p,
.wpcf7-form,
.wpcf7-form p,
.wpcf7-form span,
.wpcf7-form label,
.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea,
.wpcf7-form select,
.wpcf7-form .wpcf7-list-item-label,
.form-group p,
.form-group span,
.tour-left .policies-text,
.tour-left .policies-text p,
.tour-left .policies-text span,
.tour-card,
.tour-card p,
.tour-card span,
.tour-card ul,
.tour-card li {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

@media (max-width: 767px) {

  .highlights p,
  .trek-container,
  .trek-container p,
  .trek-container span,
  .trek-container div,
  .trek-container ul,
  .trek-container li,
  .custom-list li,
  .custom-list li span,
  .tab-content,
  .tab-content p,
  .tab-content span,
  .tab-content div,
  .tab-content ul,
  .tab-content li,
  .accordion-body,
  .accordion-body p,
  .accordion-body span,
  .accordion-body div,
  .accordion-body ul,
  .accordion-body li,
  .inclusion-list li,
  .inclusion-list li span,
  .inclusion.included,
  .inclusion.included *,
  .faq-question,
  .faq-answer,
  .faq-section .faq-answer p,
  .wpcf7-form,
  .wpcf7-form p,
  .wpcf7-form span,
  .wpcf7-form label,
  .wpcf7-form input:not([type="submit"]),
  .wpcf7-form textarea,
  .wpcf7-form select,
  .wpcf7-form .wpcf7-list-item-label,
  .form-group p,
  .form-group span,
  .tour-left .policies-text,
  .tour-left .policies-text p,
  .tour-left .policies-text span,
  .tour-card,
  .tour-card p,
  .tour-card span,
  .tour-card ul,
  .tour-card li {
    font-size: 14px !important;
  }
}

/* =====================================================
   PREMIUM LUXURY NAVIGATION STRIP
   ===================================================== */

.luxury-nav-strip {
  background: transparent !important;
  /* Clean White as per reference */
  padding: 15px 0 !important;
  position: relative;
  z-index: 100;
}

.luxury-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Breadcrumb Styling */
.luxury-breadcrumb,
.luxury-nav-strip .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.luxury-breadcrumb li,
.luxury-breadcrumb li a,
.luxury-nav-strip .breadcrumb li,
.luxury-nav-strip .breadcrumb li a {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.luxury-breadcrumb li a:hover,
.luxury-nav-strip .breadcrumb li a:hover {
  color: #C8A96B;
}

.luxury-breadcrumb li.active,
.luxury-nav-strip .breadcrumb li.active {
  color: #2F2F2F;
  font-weight: 500;
}

.luxury-breadcrumb .sep,
.luxury-nav-strip .breadcrumb .sep {
  font-size: 10px;
  color: #aaa;
  margin: 0 4px;
}

/* Auto add separator if breadcum.php doesn't have it */
.luxury-nav-strip .breadcrumb li.breadcrumb-item:not(:last-child)::after {
  content: "\f054";
  /* FontAwesome chevron right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #aaa;
  margin: 0 4px;
}

/* Central Editorial Label */
.luxury-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  font-weight: 500;
  padding: 2px 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.luxury-utility-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.luxury-utility-link {
  background: transparent !important;
  border: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
  /* Slightly tighter as per reference */
  color: #222 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 5px 0 !important;
}

.luxury-utility-link i {
  font-size: 16px !important;
  color: #222;
  font-weight: 300;
}

.luxury-utility-link svg {
  color: #222;
  margin-bottom: 2px;
  /* Visual alignment fix */
}

.luxury-utility-link span {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #222;
  letter-spacing: -0.2px;
}

.luxury-utility-link:hover {
  opacity: 0.7;
}

/* Mobile Adjustments for the Strip */
@media (max-width: 767px) {
  .luxury-nav-strip {
    padding: 8px 0 !important;
  }

  .luxury-label,
  .luxury-utility-link span {
    display: none;
  }

  .luxury-utility-link {
    padding: 6px !important;
  }

  .utility-divider {
    display: none;
  }
}

/* Reset Bootstrap breadcrumb separators */
.luxury-nav-strip .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: none !important;
  display: none !important;
  padding: 0 !important;
}

/* Ensure our font awesome chevron takes over */
.luxury-nav-strip .breadcrumb li.breadcrumb-item:not(:last-child)::after {
  content: "\f054" !important;
  /* FontAwesome chevron right */
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 10px !important;
  color: #aaa !important;
  margin: 0 8px !important;
  display: inline-block !important;
}

/* Reset Bootstrap breadcrumb container styles */
.luxury-nav-strip .breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Force links to look right */
.luxury-nav-strip .breadcrumb li a {
  color: #777 !important;
}

.luxury-nav-strip .breadcrumb li.active {
  color: #2F2F2F !important;
}

/* =====================================================
   MOBILE UI FIX — MATCH PRODUCT PAGE THEME
   Applies to: single-treks, single-tours, single-stays,
   single-activites, single-holidays
   ===================================================== */

/* ── Global tour page mobile resets ── */
@media (max-width: 991px) {

  /* Restore the box-shadow card look on mobile (matches desktop card layout) */
  .tour-left .tour-card {
    background: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    padding: 24px 20px !important;
    margin-bottom: 20px !important;
    border-bottom: none !important;
  }

  .tour-left .tour-card:last-child {
    margin-bottom: 0 !important;
  }

  /* Container / section spacing */
  .tour-section .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .tour-content {
    margin-top: 10px !important;
    gap: 0 !important;
  }

  /* ── Feature icons (Gypsy / Permits / etc.) ── */
  .feature-icons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .feature {
    background: #f7f4ef !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;


    font-family: "Montserrat", sans-serif !important;
    color: #2F2F2F !important;
    display: inline-flex !important;
    align-items: center !important;

    font-weight: 500 !important;
    padding: 5px 10px !important;
    font-size: 11px !important;
    border-radius: 20px !important;
    gap: 5px !important;
  }

  .feature i {
    font-size: 13px !important;
    color: #C8A96B !important;
  }

  /* ── Highlights section ── */
  .highlights h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    font-family: "Montserrat", sans-serif !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
  }

  .highlights ul {
    padding-left: 0 !important;
    list-style: none !important;
    margin: 0 !important;
  }

  .highlights ul li {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    font-family: "Montserrat", sans-serif !important;
    padding-left: 24px !important;
    margin-bottom: 10px !important;
    position: relative !important;
  }

  .highlights ul li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 7px !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #C8A96B !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* ── About / Trek overview section ── */
  .trek-container {
    padding: 0 !important;
  }

  .trek-text {
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #555 !important;
    font-family: "Montserrat", sans-serif !important;
    display: block !important;
  }

  .trek-subtitle {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    font-family: "Montserrat", sans-serif !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  .custom-list li {
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
    font-family: "Montserrat", sans-serif !important;
    gap: 10px !important;
  }

  .custom-list li i.fa-circle {
    font-size: 6px !important;
    color: #C8A96B !important;
    flex-shrink: 0 !important;
    margin-top: 5px !important;
  }

  /* ── Tabs section ── */
  .tabs {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 0 !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06) !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
  }

  .tabs::-webkit-scrollbar {
    display: none !important;
  }

  .tabs .tab {
    white-space: nowrap !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: "Montserrat", sans-serif !important;
    padding: 10px 16px !important;
    border-bottom: 2px solid transparent !important;
    color: #888 !important;
    background: transparent !important;
    border-radius: 0 !important;
    flex-shrink: 0 !important;
    margin-bottom: -2px !important;
    transition: color 0.3s ease, border-color 0.3s ease !important;
  }

  .tabs .tab.active {
    color: #1a1a1a !important;
    border-bottom-color: #1a1a1a !important;
  }

  /* ── Accordion / Itinerary ── */
  .accordion-button {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: "Montserrat", sans-serif !important;
    color: #1a1a1a !important;
    padding: 16px 0 !important;
    background: transparent !important;
  }

  .accordion-button:not(.collapsed) {
    color: #1a1a1a !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .accordion-item {
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .accordion-body {
    padding: 0 0 20px 0 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #555 !important;
    font-family: "Montserrat", sans-serif !important;
  }

  .accordion-body p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #555 !important;
    margin-bottom: 8px !important;
  }

  .day_title {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: "Montserrat", sans-serif !important;
  }

  /* ── Inclusion / Exclusion lists ── */
  .inclusion-list li,
  .inclusion.included {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    font-family: "Montserrat", sans-serif !important;
    margin-bottom: 8px !important;
    gap: 10px !important;
  }

  /* ── Title / Heading inside tour card ── */
  .main-heading h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    font-family: "Montserrat", sans-serif !important;
    color: #1a1a1a !important;
    letter-spacing: -0.3px !important;
  }

  /* ── Breadcrumb strip mobile ── */
  /* changed by BHV: fix detail page breadcrumb/title overlap on mobile */
  .breadcrumb_section.luxury-nav-strip {
    padding: 10px 0 12px !important;
    margin-bottom: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .breadcrumb_section .luxury-nav-container {
    position: relative;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .breadcrumb_section .nav-left {
    width: 100%;
    padding-right: 72px;
  }

  .breadcrumb_section .nav-right {
    position: absolute;
    top: 0;
    right: 0;
  }

  .breadcrumb_section .breadcrumb {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 2px;
  }

  .breadcrumb_section .breadcrumb li.active {
    flex: 0 0 100%;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: #1a1a1a !important;
    margin-top: 4px;
    padding-right: 0;
  }

  .breadcrumb_section .breadcrumb li:not(.active) {
    font-size: 12px !important;
  }

  .breadcrumb_section .luxury-utility-link span {
    display: none !important;
  }

  .breadcrumb_section .luxury-utility-link {
    padding: 6px !important;
  }

  .breadcrumb_section+.gallery_section {
    padding-top: 10px !important;
  }

  /* ── Gallery section ── */
  .gallery_section {
    padding: 0 12px !important;
  }

  .gallery_section .image-gallery {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .gallery-main {
    height: 280px !important;
    border-radius: 10px !important;
  }

  .gallery-main img {
    border-radius: 10px !important;
  }

  .gallery-side {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
  }

  .gallery-item {
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
  }

  .gallery-item img {
    border-radius: 8px !important;
  }

  /* ── FAQ section (More details) ── */
  /* changed by BHV: compact FAQ accordion layout on mobile detail pages */
  .tour-card .highlights h3 {
    font-size: 17px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .faq-section .faq-item {
    margin-bottom: 8px !important;
    border-radius: 8px !important;
  }

  .faq-section .faq-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 11px 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    color: #2f2f2f !important;
  }

  .faq-section .faq-question i {
    flex-shrink: 0;
    font-size: 11px;
    opacity: 0.75;
    align-self: center;
    margin-top: 0 !important;
  }

  .faq-answer {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #555 !important;
    font-family: "Montserrat", sans-serif !important;
    padding: 0 12px 12px !important;
  }

  /* ── Read more button ── */
  .read-more,
  .read-more-btn {
    font-size: 13px !important;
    font-weight: 700 !important;
    font-family: "Montserrat", sans-serif !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    border-bottom: 1px solid #1a1a1a !important;
    padding-bottom: 2px !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-block !important;
    margin-top: 14px !important;
    background: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  /* ── Tour-right sidebar — hide on mobile ── */
  .tour-right {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* ── Extra-small screens ── */
@media (max-width: 480px) {
  .highlights h3 {
    font-size: 20px !important;
  }

  .main-heading h2 {
    font-size: 20px !important;
  }

  .tour-section .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .gallery-main {
    height: 240px !important;
  }
}

/* =====================================================
   LUXURY NAV STRIP (INTEGRATED)
   ===================================================== */
.luxury-nav-strip {
  background: transparent !important;
  padding: 15px 0 !important;
  position: relative;
  z-index: 100;
  margin-bottom: 0;
}

.luxury-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.luxury-breadcrumb,
.luxury-nav-strip .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.luxury-breadcrumb li,
.luxury-breadcrumb li a,
.luxury-nav-strip .breadcrumb li,
.luxury-nav-strip .breadcrumb li a {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #777 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.luxury-breadcrumb li a:hover,
.luxury-nav-strip .breadcrumb li a:hover {
  color: #C8A96B !important;
}

.luxury-breadcrumb li.active,
.luxury-nav-strip .breadcrumb li.active {
  color: #2F2F2F !important;
  font-weight: 500;
}

.luxury-breadcrumb .sep,
.luxury-nav-strip .breadcrumb .sep {
  font-size: 10px;
  color: #aaa;
  margin: 0 4px;
}

.luxury-nav-strip .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: none !important;
  display: none !important;
  padding: 0 !important;
}

.luxury-nav-strip .breadcrumb li.breadcrumb-item:not(:last-child)::after {
  content: "\f054" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 10px !important;
  color: #aaa !important;
  margin: 0 8px !important;
  display: inline-block !important;
}

.luxury-nav-strip .breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.luxury-utility-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.luxury-nav-strip button.luxury-utility-link,
.luxury-utility-link {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 5px 0 !important;
  appearance: none;
  -webkit-appearance: none;
}

.luxury-utility-link i {
  font-size: 16px !important;
  color: #222;
  font-weight: 300;
}

.luxury-utility-link svg {
  color: #222;
  margin-bottom: 2px;
}

.luxury-utility-link span {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #222;
  letter-spacing: -0.2px;
}

.luxury-utility-link:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .luxury-nav-strip {
    padding: 8px 0 !important;
    margin-bottom: 0 !important;
  }

  .luxury-label,
  .luxury-utility-link span {
    display: none;
  }

  .luxury-utility-link {
    padding: 6px !important;
  }
}

/* =====================================================
   MOBILE PRICE CARD (INTEGRATED)
   ===================================================== */
.tour-section .price-card.tour-card.d-md-none.mobile-top {
  background: #fff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 20px !important;
}

.tour-section .price-card.tour-card.d-md-none.mobile-top .old-price {
  font-size: 12px !important;
  color: #999 !important;
  margin-bottom: 6px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
  font-family: "Montserrat", sans-serif !important;
}

.tour-section .price-card.tour-card.d-md-none.mobile-top .old-price span {
  text-decoration: line-through !important;
}

.tour-section .price-card.tour-card.d-md-none.mobile-top .current-price {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 18px 0 !important;
}

.tour-section .price-card.tour-card.d-md-none.mobile-top .current-price h2 {
  margin: 0 !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.4px !important;
  color: #1a1a1a !important;
  font-family: "Montserrat", sans-serif !important;
}

.tour-section .price-card.tour-card.d-md-none.mobile-top .discount {
  background: #118a44 !important;
  color: #fff !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  margin-left: 0 !important;
}

.tour-section .price-card.tour-card.d-md-none.mobile-top .best-price {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 18px 0 !important;
  color: #4a4a4a !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.tour-section .price-card.tour-card.d-md-none.mobile-top .best-price i {
  color: #2e7d32 !important;
  font-size: 14px !important;
}

.tour-section .price-card.tour-card.d-md-none.mobile-top .book-btn {
  width: 100% !important;
  background: #222 !important;
  border: 1px solid #222 !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  font-family: "Montserrat", sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
}

@media (max-width: 420px) {
  .tour-section .price-card.tour-card.d-md-none.mobile-top {
    padding: 20px !important;
  }

  .tour-section .price-card.tour-card.d-md-none.mobile-top .current-price h2 {
    font-size: 24px !important;
  }
}

/* =====================================================
   GLOBAL THEME CONSISTENCY OVERRIDES (Bhavith)
   Standardizing Luxury Gold (#C8A96B) and Charcoal/Black (#2F2F2F)
   ===================================================== */

/* 1. Star Ratings - Vibrant Yellow across entire site */
.rating .fa-star,
.rating small.fa-star,
.rating-line .fa-star,
.rating-line .fa-star-half-stroke,
.star-rating i {
  color: #ffc107 !important;
}

.rating-line .stars {
  color: #ffc107 !important;
  font-weight: 600 !important;
}

.card-divider {
  border: 0 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  margin: 16px 0 !important;
  width: 100% !important;
}

/* 2. Global Callback buttons (homepage popup trigger) */
.callback-button,
.gj-callback-trigger,
.enquiry_button {
  background: #9b7a3e !important;
  border: 1px solid #9b7a3e !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.03em !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: none !important;
  width: 100% !important;
}

.callback-button:hover,
.gj-callback-trigger:hover,
.enquiry_button:hover {
  background: #7f632f !important;
  color: #fff !important;
  border-color: #7f632f !important;
}

/* 3. Global Callback Button inside OWL Carousels on Homepage */
.unique_box .product_det .callback-button {
  margin-top: 15px !important;
}

/* 4. Unify reviews link and back-to-top colors (replacing blue) */
.reviews {
  color: #777 !important;
}

.reviews:hover {
  color: #C8A96B !important;
  text-decoration: underline !important;
}

.back-to-top,
.back-to-top i {
  background: #2F2F2F !important;
  color: #fff !important;
  border: 1px solid #2F2F2F !important;
}

.back-to-top:hover,
.back-to-top:hover i {
  background: #C8A96B !important;
  color: #fff !important;
  border-color: #C8A96B !important;
}

/* 5. Discount badge (replacing bright green) */
.discount {
  background: #C8A96B !important;
  color: #fff !important;
}

/* 6. Got a Question & Inconsistent green/gold items */
.enquiry-header .phone,
.why-choose,
.why-choose li i,
.privacy-note i,
.package_list li i,
.best-price,
.best-price i {
  color: #C8A96B !important;
  border-color: #C8A96B !important;
}

.enquiry-header .phone:hover {
  color: #1a1a1a !important;
}

/* 7. Read More links (replacing red-orange) */
.read-more,
.read-more-btn {
  color: #C8A96B !important;
}

.read-more:hover,
.read-more-btn:hover {
  color: #1a1a1a !important;
}

/* 8. Unify Concierge Gold icons (#b8974a to #C8A96B) */
.concierge-eyebrow,
.concierge-icon i,
.concierge-icon svg,
.concierge-badge-inline .fa-star,
.concierge-badge-inline .fa-leaf,
.concierge-badge-inline i {
  color: #C8A96B !important;
}

/* ── Bottom Content Spacing Adjustments ── */

/* Desktop view: 30px consistent gap between sections */
@media (min-width: 992px) {

  /* 
     With .tour-content flex container having gap: 20px, we set margin-bottom of 10px 
     on these sections so the total gap is 10px + 20px (gap) = 30px.
     Also reset margin-top to 0 to prevent excessive stacked margins.
  */
  .tour-content>.tour-card:has(.map-section),
  .tour-content>.review-wrapper,
  .tour-content>.tour-card:has(.newsletter_section),
  .tour-content>.tour-card.blog-section,
  .tour-content>#gj-cust-bought-section,
  .tour-content>.help-section.tour-card {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }
}

/* Mobile view: 20px consistent gap between sections */
@media (max-width: 991px) {

  /* 
     With .tour-content having gap: 0 !important, we set margin-bottom to 20px
     directly to ensure a clean, consistent 20px spacing.
  */
  .tour-content>.tour-card:has(.map-section),
  .tour-content>.review-wrapper,
  .tour-content>.tour-card:has(.newsletter_section),
  .tour-content>.tour-card.blog-section,
  .tour-content>#gj-cust-bought-section,
  .tour-content>.help-section.tour-card {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
}

/* ── Center Navigation Menu Items on Desktop ── */
@media (min-width: 768px) {
  .cstm-nav-bar {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    max-width: 800px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999 !important;
  }

  .cstm-nav-bar .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .cstm-nav-section,
  .cstm-nav_carousel,
  .cstm-nav_carousel .owl-stage-outer {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .cstm-nav_carousel .owl-stage {
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .cstm-nav_carousel .owl-item {
    float: none !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
  }
}

/* ── Center Navigation Menu Items in Header Two (Details Pages) ── */
@media (min-width: 992px) {
  header.navbar {
    position: relative;
  }

  header.navbar.sticky-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 1020 !important;
  }

  header.navbar>.menu-bar {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999 !important;
  }

  header.navbar>.menu-bar .nav-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    /* Clean, modern spacing between icon links */
  }
}


/* ═══════════════════════════════════════════════════════════
   PREMIUM GALLERY LIGHTBOX MODAL — GoJawai
   ═══════════════════════════════════════════════════════════ */

/* Modal root – hidden by default */
.gj-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: stretch;
  justify-content: center;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gj-gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop */
.gj-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.97);
  z-index: 0;
}

/* Container */
.gj-gallery-modal__container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Header ── */
.gj-gallery-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.gj-gallery-modal__header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gj-gallery-modal__title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gj-gallery-modal__title i {
  color: #C8A96B;
  font-size: 16px;
}

.gj-gallery-modal__count-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.gj-gallery-modal__close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.gj-gallery-modal__close:hover {
  background: rgba(200, 169, 107, 0.2);
  color: #C8A96B;
  border-color: rgba(200, 169, 107, 0.4);
}

/* ── Main Viewer ── */
.gj-gallery-modal__viewer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px 70px;
  min-height: 0;
}

.gj-gallery-modal__main-img-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 100%;
}

.gj-gallery-modal__active-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gj-gallery-modal__active-img.is-loading {
  opacity: 0.3;
  transform: scale(0.97);
}

.gj-gallery-modal__img-caption {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  letter-spacing: 0.04em;
  min-height: 18px;
}

/* ── Prev/Next Navigation ── */
.gj-gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  z-index: 2;
  flex-shrink: 0;
}

.gj-gallery-modal__nav:hover {
  background: rgba(200, 169, 107, 0.2);
  border-color: rgba(200, 169, 107, 0.5);
  color: #C8A96B;
}

.gj-gallery-modal__nav--prev {
  left: 16px;
}

.gj-gallery-modal__nav--next {
  right: 16px;
}

.gj-gallery-modal__nav:disabled {
  opacity: 0.2;
  cursor: default;
}

/* ── Thumbnail Strip ── */
.gj-gallery-modal__strip {
  flex-shrink: 0;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.gj-gallery-modal__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 169, 107, 0.4) transparent;
  padding-bottom: 4px;
  justify-content: flex-start;
  align-items: center;
}

.gj-gallery-modal__thumbs::-webkit-scrollbar {
  height: 3px;
}

.gj-gallery-modal__thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.gj-gallery-modal__thumbs::-webkit-scrollbar-thumb {
  background: rgba(200, 169, 107, 0.4);
  border-radius: 3px;
}

.gj-gallery-modal__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.55;
}

.gj-gallery-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gj-gallery-modal__thumb:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

.gj-gallery-modal__thumb.active {
  border-color: #C8A96B;
  opacity: 1;
  transform: scale(1.06);
}

/* ── Mobile Responsive ── */
@media (max-width: 767px) {
  .gj-gallery-modal__viewer {
    padding: 12px 50px;
  }

  .gj-gallery-modal__nav {
    width: 38px;
    height: 38px;
  }

  .gj-gallery-modal__nav--prev {
    left: 8px;
  }

  .gj-gallery-modal__nav--next {
    right: 8px;
  }

  .gj-gallery-modal__title {
    font-size: 13px;
  }

  .gj-gallery-modal__thumb {
    width: 56px;
    height: 42px;
  }

  .gj-gallery-modal__header {
    padding: 12px 16px;
  }
}

/* Prevent body scroll when modal is open */
body.gj-gallery-modal-open {
  overflow: hidden !important;
}

/* ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   BOOKING.COM-STYLE GALLERY GRID — GoJawai
   ═══════════════════════════════════════════════════════════ */

.gallery_section {
  padding: 16px 0 0;
}

/* Outer grid: [large] [2×2] */
.gj-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* equal halves — tweak ratio if needed */
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}

/* ── Left: tall main image ── */
.gj-grid-main {
  position: relative;
  overflow: hidden;
}

.gj-grid-main a {
  display: block;
  width: 100%;
  height: 100%;
}

.gj-grid-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gj-grid-main:hover img {
  transform: scale(1.03);
}

/* ── Right: 2×2 sub-grid ── */
.gj-grid-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Each cell in the 2×2 */
.gj-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  /* consistent cell proportions */
  background: #1a1a1a;
}

.gj-grid-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gj-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gj-grid-item:hover img {
  transform: scale(1.05);
}

/* Optional overlay label (e.g. "Garden Picnic") */
.gj-overlay-label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  letter-spacing: 0.3px;
}

/* ── Counter cell (bottom-right) ── */
.gj-grid-counter {
  cursor: pointer;
}

.gj-grid-counter img {
  filter: brightness(0.45);
  /* darken behind the count */
}

.gj-counter-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  padding: 0;
  gap: 4px;
  transition: background 0.2s ease;
}

.gj-counter-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

.gj-counter-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
  font-family: "Montserrat", sans-serif;
}

.gj-counter-label {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

/* If no bg image was available, show a solid dark bg */
.gj-grid-counter:not(:has(img)) {
  background: #2a2520;
}

/* ── Mobile: stack to single column ── */
@media (max-width: 767px) {
  .gj-image-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .gj-grid-main img {
    height: 260px;
    object-fit: cover;
  }

  .gj-grid-side {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .gj-grid-item {
    aspect-ratio: 1 / 1;
  }

  .gj-counter-num {
    font-size: 22px;
  }

  .gj-counter-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .gj-grid-main img {
    height: 220px;
  }
}

/* ═══════════════════════════════════════════════════════════ */
.luxury-nav-strip {
  background: transparent !important;
}

/* Compact feature tags — fit more on one line */
.feature-icons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

.feature {
  padding: 5px 10px !important;
  font-size: 12px !important;
  border-radius: 20px !important;
  gap: 5px !important;
}

.feature i {
  font-size: 11px !important;
}

/* changed by BHV: heading-right text link for homepage section view more */
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.section-heading-row .section-title {
  margin-bottom: 0 !important;
}

.section-view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2F2F2F !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.section-view-more-link:hover {
  color: #C8A96B !important;
}

@media (max-width: 767px) {
  .section-view-more-link {
    font-size: 12px;
    gap: 4px;
  }
}

/* changed by BHV: logo must not pick up brown/link hover styles */
.header-main-row .navbar-brand,
.header-main-row .navbar-brand:hover,
.header-main-row .navbar-brand:focus,
.header-main-row .navbar-brand:active,
.gojawai-side-menu-header .navbar-brand,
.gojawai-side-menu-header .navbar-brand:hover,
.gojawai-side-menu-header .navbar-brand:focus {
  background: transparent !important;
  opacity: 1 !important;
  color: inherit !important;
  text-decoration: none !important;
}

.header-main-row .navbar-brand img,
.header-main-row .navbar-brand:hover img,
.header-main-row .navbar-brand:focus img,
.header-main-row .navbar-brand:active img,
.gojawai-side-menu-header .navbar-brand img,
.gojawai-side-menu-header .navbar-brand:hover img,
.gojawai-side-menu-header .navbar-brand:focus img {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

/* changed by BHV: premium pill header nav (from gojawi/Homepage) */
.header-main-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.header-nav-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #faf9f7;
  padding: 6px 18px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3a3128;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-nav-link i {
  font-size: 13px;
  color: #c8a96b;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.header-nav-link span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.header-nav-link:hover {
  background: rgba(200, 169, 107, 0.08);
  color: #1a1a1a;
  text-decoration: none;
}

.header-nav-link:hover i {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .header-main-row .row {
    row-gap: 0;
  }

  /* changed by BHV: remove blank gap between pill nav and hero slider */
  .header-main-row.container-fluid {
    padding-bottom: 6px !important;
  }

  .header-nav-col {
    padding: 4px 0 6px !important;
  }

  .carousel-header {
    margin-top: 0 !important;
  }

  .header-nav-container {
    width: auto;
    max-width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 5px 12px;
  }

  .header-nav-link {
    padding: 5px 8px;
    gap: 5px;
  }

  .header-nav-link i {
    font-size: 11px;
  }

  .header-nav-link span {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .nav-separator {
    width: 3px;
    height: 3px;
  }
}

@media (max-width: 767px) {
  .header-main-row {
    padding-top: 8px !important;
    padding-bottom: 6px !important;
  }

  .carousel-header {
    margin-top: 0 !important;
  }

  .carousel-header .carousel-inner {
    border-radius: 12px;
  }

  .header-main-row .navbar-brand img {
    height: 42px !important;
    max-height: 42px !important;
  }
}

/* ============================================================
   Request a Call – Popup Modal (Matched to UI Screenshot)
   ============================================================ */

/* Overlay Background */
.gj-callback-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  /* Slightly darker to make modal pop */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gj-callback-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal Box */
#gjCallbackModal {
  background: #ffffff;
  width: 90%;
  max-width: 460px;
  border-radius: 20px;
  padding: 40px 35px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.gj-callback-overlay.active #gjCallbackModal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close Button (X) */
.gj-cb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.gj-cb-close:hover {
  color: #1a1a1a;
  transform: rotate(90deg);
}

/* Icon Badge */
.gj-callback-icon {
  width: 68px;
  height: 68px;
  background: #232323;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.gj-callback-icon i {
  color: #c8a96b;
  font-size: 26px;
}

/* Typography (Headings & Text) */
#gjCallbackModal h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
  text-align: center;
  line-height: 1.2;
}

#gjCallbackModal p.gj-cb-sub {
  font-size: 14px;
  color: #6d6d6d;
  text-align: center;
  margin: 0 0 24px;
}

/* --- THE FIX FOR SQUISHED FIELDS --- */
/* Force block display and bottom margin on CF7 wrappers */
#gjCallbackModal .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 16px;
  width: 100%;
}

/* Input Fields & Textarea */
#gjCallbackModal input[type="text"],
#gjCallbackModal input[type="email"],
#gjCallbackModal input[type="tel"],
#gjCallbackModal input[type="number"],
#gjCallbackModal textarea,
#gjCallbackModal .wpcf7-form-control {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  background: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  /* Reset margin inside the wrap */
}

/* Fallback margin just in case the wrap is completely missing */
#gjCallbackModal .wpcf7-form>input,
#gjCallbackModal .wpcf7-form>textarea {
  margin-bottom: 16px;
}

#gjCallbackModal textarea {
  height: 120px;
  resize: vertical;
}

/* Field Focus State */
#gjCallbackModal input:focus,
#gjCallbackModal textarea:focus,
#gjCallbackModal .wpcf7-form-control:focus {
  border-color: #c8a96b;
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.1);
}

/* Placeholder Text */
#gjCallbackModal input::placeholder,
#gjCallbackModal textarea::placeholder {
  color: #9a9a9a;
}

/* Submit Button */
#gjCallbackModal .wpcf7-submit,
#gjCallbackModal input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: #9b7a3e;
  /* Theme gold */
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.25s ease, transform 0.2s ease;
  font-family: "Montserrat", sans-serif;
}

#gjCallbackModal .wpcf7-submit:hover,
#gjCallbackModal input[type="submit"]:hover {
  background: #8b6d3a;
  transform: translateY(-2px);
}

/* CF7 Success/Error Messages */
#gjCallbackModal .wpcf7-response-output {
  border-radius: 12px !important;
  padding: 14px !important;
  margin-top: 20px !important;
  font-size: 14px;
}

#gjCallbackModal .wpcf7-not-valid-tip {
  color: #d63638;
  font-size: 13px;
  margin-top: 6px;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  #gjCallbackModal {
    padding: 32px 24px;
    width: 92%;
  }

  #gjCallbackModal h3 {
    font-size: 22px;
  }

  .gj-callback-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .gj-callback-icon i {
    font-size: 22px;
  }

  .gj-cb-close {
    top: 16px;
    right: 18px;
    font-size: 28px;
  }
}