/* Zentrek Adventures — custom styles (Bootstrap handles grid & utilities) */

/* === FONT SETUP ===
Primary: 'Playfair Display' for h1-h6 (and display classes)
Secondary: 'Montserrat' for all other text
*/

/* Update font-family variables */
:root {
  --zt-navy: #111111;
  --zt-navy-soft: #111111;
  --zt-gold: #D4AF37;
  --zt-gold-soft: #D4AF37;
  --zt-orange: #D4AF37;
  --zt-orange-dark: #D4AF37;
  --zt-search-gold: #D4AF37;
  --zt-search-gold-dark: #D4AF37;
  --zt-inquiry: #D4AF37;
  --zt-inquiry-hover: #D4AF37;
  --zt-nav-gold: #d4af37;
  --zt-nav-glass: rgba(30, 40, 60, 0.62);
  --zt-cream: #f6f1e8;
  --zt-sage: #111111;
  --zt-white: #ffffff;
  --bs-body-font-weight:500;
  --zt-overlay: rgba(15, 31, 46, 0.55);
  --zt-font-display: 'Playfair Display', serif;
  --zt-font-body: 'Montserrat', Arial, Helvetica, sans-serif;
  --zt-font-hero: 'Playfair Display', sans-serif;
  --zt-headline-bg-image: url("../image/bg-transparent.webp");
}

/* Headline strips — background from image/bg-transparent.webp */
  /* Desktop submenu open on hover */
  a {
    color: rgb(221 168 74);
    text-decoration:none;
    font-weight: 600;
}
body{
    color:#111;
}
p{
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 400; 
  font-size:15px;
  line-height:25px;
  color:#111;
}
.offcanvas-body{
  margin-top: 30px;
}
  @media (min-width: 992px) {
    .zt-banner-nav .navbar-nav .dropdown:hover > .dropdown-menu {
      display: block;
      margin-top: 0;
      padding: 15px 5px;
      max-height: 365px;
        
        overflow: hidden;
        overflow-y: auto;
     
    }
    .zt-banner-nav .navbar-nav .dropdown:hover > .dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.zt-banner-nav .navbar-nav .dropdown:hover > .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.zt-banner-nav .navbar-nav .dropdown:hover > .dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.zt-banner-nav .navbar-nav .dropdown:hover > .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}
    .dropdown-item{
      padding: 10px;
      font-size: 13px;
              word-break: break-word;
        white-space: normal;
                width: 300px;
    }
    .zt-banner-nav .navbar-nav .dropdown > .dropdown-toggle:after {
      /* keep arrow the same */
    }
    .zt-banner-nav .navbar-nav .dropdown-menu {
      transition: none;
    }
  }
   /* Example sticky class usage; you can override this in your own CSS file */
   .zt-banner-header.is-sticky {
    background-color: #fff; /* Change as desired */
    box-shadow: 0 2px 16px 0 rgba(32,46,58,0.11);
    transition: background 0.2s, box-shadow 0.2s;
  }
  .zt-banner-header.header-visible {
    background-color: #111;
    position: fixed;
    z-index: 99999;
  }
  .zt-banner-header.header-visible .zt-banner-logo-img {
    width: 80px;
  }
/*.zt-headline-photo-bg {
  position: relative;
  background-color: transparent !important;
  border-radius: 1.15rem;
  overflow: hidden;
  border: none;
  box-shadow: none;
}*/

.zt-headline-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background-color: transparent;
  background-image: var(--zt-headline-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dropdown-item.active, .dropdown-item:active{
        background: transparent;
    color: #d4af37;
}
.zt-headline-photo-bg > * {
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

/* Anchor offset — extra top space so targets clear the fixed header */
.zt-section,
#about {
  scroll-margin-top: 96px;
}

#home {
  scroll-margin-top: 0;
}

#experiences {
  scroll-margin-top: 96px;
}

body {
  font-family: var(--zt-font-body);
  color: var(--zt-navy);
  background: var(--zt-cream);
}

/* HEADINGS: Playfair Display. All other text: Montserrat */
h1,
h2,
h3,
h4,
h5,
h6,
.zt-display {
  font-family: var(--zt-font-display);
  font-weight: 500;
}

/* If there are any Bootstrap .display-X classes, force Playfair Display for them as well */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--zt-font-display) !important;
}

/* All other text (main, paragraph, nav, etc) uses Montserrat via body,
   or inherits from --zt-font-body (already updated above) */

/* ========== Hero banner (Swiper; header overlaid via CSS) ========== */
.zt-hero-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
  background: #0a1520;
}

.zt-hero-swiper.swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  overflow: hidden;
}

.zt-hero-swiper .swiper-wrapper,
.zt-hero-swiper .swiper-slide {
  height: 100%;
}

.zt-hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}

.zt-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.zt-hero-slide-overlay {
 position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 18, 28, 0.82) 0%, rgb(0 0 0 / 65%) 42%, rgb(0 0 0 / 55%) 100%);
    z-index: 1;
}

.zt-hero-slide-inner {
  position: relative;
  z-index: 2;
  padding: 7.75rem 1rem 11rem;
}

@media (min-width: 992px) {
  .zt-hero-slide-inner {
    padding-left: 4.5rem;
    padding-right: 5rem;
    padding-top: 8.5rem;
  }
}

.zt-hero-eyebrow {
  font-family: var(--zt-font-hero);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.zt-hero-eyebrow p {
  margin: 0;
  color:#fff;
}

.zt-hero-title {
  font-family: var(--zt-font-display);
  font-weight: 500;
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.75rem);
  line-height: 1.12;
  max-width: 920px;
  margin: 0 auto 1.25rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .zt-hero-title {
    margin-left: 0;
    margin-right: 0;
  }
}

.zt-hero-lead {
  font-family: var(--zt-font-hero);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.zt-hero-lead p {
  margin: 0;
}

.zt-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.zt-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: var(--zt-font-hero);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.zt-hero-pill--link {
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.zt-hero-pill--link:hover {
  background: rgba(230, 161, 77, 0.25);
  border-color: var(--zt-orange);
  color: #fff;
}

.zt-hero-pill-icon {
  width: 1rem;
  height: 1rem;
  opacity: 0.95;
}

/* Site header — fixed to viewport top (stays visible while scrolling; over hero) */
.zt-banner-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.zt-banner-nav {
  background: transparent;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.zt-banner-brand {
  color: #fff !important;
}

.zt-banner-navbar-row {
  position: relative;
  row-gap: 0.5rem;
}

.zt-banner-brand-slot {
  position: relative;
  z-index: 3;
}

.zt-banner-toggler-slot {
  position: relative;
  z-index: 3;
}

.zt-banner-collapse {
  width: 100%;
}
@media (min-width:1550px){
    /*.zt-nav-pill-outer{*/
    /*            left: 42%;*/
    /*}*/
}
@media (min-width: 992px) {
  .zt-banner-navbar-row {
    flex-wrap: nowrap;
  }

  .zt-banner-collapse {
    display: flex !important;
    flex-grow: 1;
    flex-basis: 0;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    min-height: 52px;
    width: auto;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible;
  }

  .zt-nav-pill-outer {
    /*position: absolute;*/
    /*left: 30%;*/
    /*top: 50%;*/
    /*transform: translate(-50%, -50%);*/
    /*z-index: 1;*/
    /*width: max-content;*/
    /*max-width: calc(100vw - 360px);*/
    /*pointer-events: auto;*/
    /*overflow: visible;*/
  }

  .zt-banner-tools {
    position: relative;
    z-index: 3;
    margin-left: auto;
  }
}

.zt-nav-pill {
  border-radius: 50px;
  background: var(--zt-nav-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

@media (min-width: 992px) {
  .zt-nav-pill {
    padding: 14px;
  }
}

.zt-nav-pill .zt-banner-menu {
  row-gap: 0.15rem;
}

@media (min-width: 992px) {
  .zt-nav-pill .zt-banner-menu {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

.zt-banner-logo-img {
  display: block;
  height: auto;
  width: 100px;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.zt-banner-menu .nav-link {
  font-family: var(--zt-font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff !important;
  padding: 0.45rem 5px !important;
  position: relative;
  border-radius: 999px;
}

.zt-banner-menu .nav-link:hover,
.zt-banner-menu .nav-link:focus {
  color: var(--zt-nav-gold) !important;
}

.zt-banner-menu .nav-link.active {
  color: var(--zt-nav-gold) !important;
}

.zt-banner-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.1rem;
  height: 3px;
  border-radius: 2px;
  background: var(--zt-nav-gold);
}

.zt-banner-menu .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 0.35em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white" class="icon icon-tabler icons-tabler-filled icon-tabler-chevron-down"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M18.707 8.293a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1 -1.414 0l-6 -6a1 1 0 0 1 1.414 -1.414l5.293 5.293l5.293 -5.293a1 1 0 0 1 1.414 0"/></svg>') center center no-repeat;
  background-size: 20px 20px;
  border: none;
}
 
@media (max-width: 1492px) {
  /*.zt-nav-pill-outer {*/
  /*    position: absolute;*/
  /*    left: 35%;*/
  /*    top: 50%;*/
  /*    transform: translate(-50%, -50%);*/
  /*    z-index: 1;*/
  /*    width: max-content;*/
  /*    max-width: calc(100vw - 360px);*/
  /*    pointer-events: auto;*/
  /*    overflow: visible;*/
  /*}*/
  .zt-hero-slide-inner{
    padding-top: 14.5rem;
  }
}

.zt-banner-menu .nav-link:hover.dropdown-toggle::after,
.zt-banner-menu .nav-link:focus.dropdown-toggle::after,
.zt-banner-menu .nav-link.show.dropdown-toggle::after {
  border-top-color: var(--zt-nav-gold);
}

.zt-banner-menu .nav-link.active.dropdown-toggle::after {
  border-top-color: var(--zt-nav-gold);
}

.zt-banner-dropdown {
  border-radius: 0.65rem;
  margin-top: 0.35rem;
  z-index: 1080;
}

.zt-banner-tools {
  margin-left: 0;
}

.zt-banner-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.zt-banner-icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.zt-banner-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0.45rem 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

.zt-nav-menu-grid {
  display: block;
  flex-shrink: 0;
  color: #fff;
}
.zt-offcanvas-nav {
  --bs-offcanvas-width: min(400px, 88vw);
  border: none;
  font-family: var(--zt-font-body);
  color: var(--zt-navy);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
}

.zt-offcanvas-header {
  padding: 1.15rem 1.25rem;
}

.zt-offcanvas-logo {
  width: 131px;
  max-width: 120px;
  object-fit: contain;
  background-color: #111;
  height: auto;
  border-radius: 10px;
  padding: 10px;
}

.zt-offcanvas-close.btn-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background-color: var(--zt-inquiry);
  opacity: 1;
  background-size: 14px;
}

.zt-offcanvas-close.btn-close:hover {
  opacity: 0.92;
}

.offcanvas-backdrop.show {
  opacity: 0.58;
}

.zt-offcanvas-accordion .accordion-item {
  background: transparent;
}

.zt-offcanvas-acc-btn.accordion-button {
  font-size: 0.95rem;
  color: #111111;
  padding: 1rem 0;
  border-bottom: 1px solid #e8eaed;
  background: #fff !important;
  box-shadow: none !important;
}

.zt-offcanvas-acc-btn.accordion-button:not(.collapsed) {
  color: #111111;
  background: #fff !important;
  box-shadow: none !important;
}

.zt-offcanvas-acc-btn.accordion-button::after {
  width: 0.65rem;
  height: 0.65rem;
  background-size: 0.65rem;
  opacity: 0.55;
}

.zt-offcanvas-accordion .accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.zt-offcanvas-sublink {
  display: block;
  padding: 0.45rem 0;
  color: #111111;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.zt-offcanvas-sublink:hover {
  color: var(--zt-inquiry);
}

.zt-offcanvas-contact-link {
  display: block;
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1f2430;
  text-decoration: none;
  border-bottom: 1px solid #e8eaed;
}

.zt-offcanvas-contact-link:hover {
  color: var(--zt-inquiry);
}

.zt-offcanvas-help {
  font-size: 0.9rem;
}

.zt-offcanvas-help-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.zt-offcanvas-help-icon {
  flex-shrink: 0;
  width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f5f8;
  color: #7a8494;
  border-right: 1px solid #e2e5ea;
  border-radius: 6px 0 0 6px;
}

.zt-offcanvas-help-text {
  flex: 1;
  padding: 0.35rem 0 0.35rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e8eaed;
  border-left: none;
  border-radius: 0 6px 6px 0;
  background: #fff;
}

.zt-offcanvas-help-highlight {
  color: var(--zt-inquiry);
}

.zt-offcanvas-help-highlight:hover {
  color: var(--zt-inquiry-hover);
}

/* Left social rail */
.zt-banner-social {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1400px) {
  .zt-banner-social {
    left: 1.75rem;
  }
}

.zt-banner-social-label {
  font-family: var(--zt-font-hero);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.zt-banner-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s ease, color 0.2s ease;
}

.zt-banner-social-btn:hover {
  background: var(--zt-orange);
  color: #fff;
}

/* Right controls + fraction */
.zt-banner-side-nav {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
}

@media (min-width: 1400px) {
  .zt-banner-side-nav {
    right: 1.75rem;
  }
}

.zt-hero-navbtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.zt-hero-navbtn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.zt-hero-fraction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--zt-font-hero);
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
}

.zt-hero-fraction-line {
  display: block;
  width: 2px;
  height: 48px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--zt-orange), rgba(255, 255, 255, 0.25));
}

.zt-hero-fraction-total {
  opacity: 0.45;
}

/* Floating search bar */
.zt-banner-search-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 28;
  transform: translateY(50%);
  pointer-events: none;
}

.zt-banner-search-wrap .container {
  pointer-events: auto;
}

.zt-banner-search--pill {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: #ffffff;
  border: none;
  box-shadow: 0 14px 44px rgba(15, 31, 46, 0.14);
  border-radius: 999px;
  min-height: 0;
  font-family: var(--zt-font-body);
  overflow: visible;
}

@media (min-width: 992px) {
  .zt-banner-search--pill {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.55rem 0.5rem 0.75rem;
  }
}

.zt-banner-search-pills {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 992px) {
  .zt-banner-search-pills {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    flex: 1;
  }
}

.zt-search-pill-wrap {
  position: relative;
  min-width: 0;
}

@media (min-width: 992px) {
  .zt-search-pill-wrap {
    flex: 1 1 0;
    min-width: 100px;
  }
}

.zt-search-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.3rem 0.65rem 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 31, 46, 0.12);
  background: #fff;
}

@media (min-width: 992px) {
  .zt-search-pill {
    min-height: 48px;
    padding-left: 0.7rem;
    padding-right: 0.55rem;
  }
}

.zt-search-pill-icon {
  display: flex;
  flex-shrink: 0;
  color: #374151;
  align-items: center;
  justify-content: center;
}

.zt-search-pill-select {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--zt-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111111;
  outline: none;
  appearance: none;
  padding: 0.2rem 0;
  cursor: pointer;
  line-height: 1.25;
}

.zt-search-pill-select option {
  color: #111111;
}

.zt-search-pill-chevron {
  display: flex;
  flex-shrink: 0;
  color: #111111;
  align-items: center;
  pointer-events: none;
}

.zt-search-pill-month {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--zt-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111111;
  outline: none;
  padding: 0.2rem 0;
  line-height: 1.25;
}

.zt-search-pill-month::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
}

.zt-search-field--guests {
  position: relative;
  z-index: 2;
}

.zt-search-field--guests.is-open {
  z-index: 40;
}

.zt-guest-picker--pill {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.zt-guest-trigger--pill {
  flex: 1;
  justify-content: flex-start;
  padding: 0.2rem 0;
  min-width: 0;
}

.zt-guest-trigger--pill .zt-guest-trigger-label {
  font-weight: 500;
  color: #111111;
}

.zt-guest-picker {
  position: relative;
}

.zt-guest-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--zt-navy);
}

.zt-guest-trigger-icon {
  display: flex;
  color: #6c757d;
  flex-shrink: 0;
}

.zt-guest-trigger-main {
  flex: 1;
  min-width: 0;
}

.zt-guest-trigger-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--zt-navy);
  line-height: 1.25;
}

.zt-guest-trigger-chevron {
  display: flex;
  flex-shrink: 0;
  color: #6c757d;
  transition: transform 0.2s ease;
}

.zt-guest-picker.is-open .zt-guest-trigger-chevron {
  transform: rotate(180deg);
}

.zt-guest-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 50;
  padding: 0.65rem 0.75rem;
  background: #f4f5f7;
  border: 1px solid rgba(15, 31, 46, 0.1);
  border-radius: 0.85rem;
  box-shadow: 0 16px 40px rgba(15, 31, 46, 0.18);
}

.zt-guest-panel[hidden] {
  display: none !important;
}

.zt-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.35rem;
}

.zt-guest-row + .zt-guest-row {
  border-top: 1px solid rgba(15, 31, 46, 0.08);
}

.zt-guest-row-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
}

.zt-guest-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 31, 46, 0.15);
  border-radius: 0.5rem;
  background: #fff;
  overflow: hidden;
}

.zt-guest-btn {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  color: #111111;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.zt-guest-btn:hover {
  background: rgba(15, 31, 46, 0.06);
  color: var(--zt-navy);
}

.zt-guest-btn:focus-visible {
  outline: 2px solid var(--zt-search-gold);
  outline-offset: 1px;
}

.zt-guest-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.zt-guest-val {
  min-width: 1.75rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  padding: 0 0.25rem;
}

.zt-search-submit--pill {
  font-family: var(--zt-font-body);
  font-weight: 500;
  text-transform: none;
  font-size: 0.95rem;
 
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0 1.35rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.zt-search-submit--pill:hover {
  background: #ea580c;
  color: #fff;
}

.zt-search-submit--pill:active {
  transform: scale(0.98);
}

.zt-search-submit--pill:focus-visible {
  outline: 2px solid #fdba74;
  outline-offset: 2px;
}

@media (min-width: 992px) {
  .zt-search-submit--pill {
    min-width: 132px;
    padding-left: 1.1rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .zt-banner-search--pill {
    border-radius: 1.35rem;
    padding: 0.75rem;
  }

  .zt-search-submit--pill {
    width: 100%;
    min-height: 50px;
  }
}

/* Search Tours modal */
.zt-search-modal .modal-dialog {
  max-width: 520px;
  width: calc(100% - 1.5rem);
}

.zt-search-modal .modal-content {
  font-family: var(--zt-font-body);
}

.zt-search-modal .modal-title {
  font-size: 1.25rem;
}

.zt-search-modal-field .zt-search-modal-input {
  padding: 0.85rem 3.25rem 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  font-size: 1rem;
  font-weight: 400;
  color: var(--zt-navy);
}

.zt-search-modal-field .zt-search-modal-input::placeholder {
  color: #9aa7b2;
}

.zt-search-modal-field .zt-search-modal-input:focus {
  border-color: var(--zt-search-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 163, 115, 0.2);
}

.zt-search-modal-submit {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #6c757d;
  transition: color 0.15s ease, background 0.15s ease;
}

.zt-search-modal-submit:hover {
  color: var(--zt-navy);
  background: rgba(0, 0, 0, 0.05);
}

body.modal-open .modal-backdrop.show {
  opacity: 0.72;
}

/* Space for overlapping booking bar (first block below hero) */
.zt-section-after-banner {
  padding-top: 7rem;
}

@media (min-width: 992px) {
  .zt-section-after-banner {
    padding-top: 8.5rem;
  }
}

.zt-after-banner-h1 {
  font-family: var(--zt-font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 500;
  color: var(--zt-navy);
  line-height: 1.2;
  margin: 0;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.zt-after-banner-h2 {
  font-family: var(--zt-font-body);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 500;
  color: #374151;
  line-height: 1.45;
  margin: 0;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.zt-after-banner-h3 {
  font-family: var(--zt-font-body);
  font-size: clamp(0.875rem, 1.65vw, 1rem);
  font-weight: 500;
  color: #111111;
  line-height: 1.5;
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Top choice — destination grid (Bootstrap row/cols) */
.zt-top-choice-fullbleed {
  width: 100%;
  max-width: 100%;
}

.zt-top-choice-head {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.zt-top-choice-title {
  font-family: var(--zt-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 500;
  color: #1a1d24;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.zt-top-choice-sub p {
  margin: 0;
  font-size: 1.0625rem;
  color: #111111;
  font-weight: 400;
  line-height: 1.55;
}

.zt-top-choice-middle {
  min-height: 0;
}

@media (min-width: 768px) {
  .zt-top-choice-middle {
    min-height: 400px;
  }

  .zt-top-choice-row-cd {
    flex: 1 1 auto;
    min-height: 0;
  }
}

@media (min-width: 992px) {
  .zt-top-choice-middle {
    min-height: 460px;
  }
}

@media (min-width: 1200px) {
  .zt-top-choice-middle {
    min-height: 500px;
  }

  .zt-top-choice-card {
    border-radius: 1.25rem;
  }
}

.zt-top-choice-card {
  position: relative;
  display: block;
  min-height: 330px;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 31, 46, 0.12);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.zt-top-choice-card:hover {
  box-shadow: 0 18px 48px rgba(15, 31, 46, 0.16);
  transform: translateY(-3px);
  color: inherit;
}

.zt-top-choice-card:focus-visible {
  outline: 3px solid rgba(221, 168, 74, 0.55);
  outline-offset: 3px;
}

.zt-top-choice-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.zt-top-choice-card:hover .zt-top-choice-img {
  transform: scale(1.05);
}

.zt-top-choice-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  transition: all 0.3s ease;
}
@media (max-width: 1599px) and (min-width: 768px) {
  .zt-top-choice-bar{
    flex-direction: column;

  }
}
.zt-top-choice-name {
  font-family: var(--zt-font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.3;
  min-width: 0;
  flex: 1;
  margin: 0;
}

.zt-top-choice-count p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #111111;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .zt-top-choice-card {
    aspect-ratio: 16 / 11;
    min-height: 0;
  }
}

@media (min-width: 1499px) {
  .zt-top-choice-name {
    font-size: 20px;
  }
}

.zt-btn-inquiry {
  --bs-btn-bg: var(--zt-inquiry);
  --bs-btn-border-color: var(--zt-inquiry);
  --bs-btn-color: #111;
  --bs-btn-hover-bg: var(--zt-inquiry-hover);
  --bs-btn-hover-border-color: var(--zt-inquiry-hover);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--zt-inquiry-hover);
  --bs-btn-active-border-color: var(--zt-inquiry-hover);
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-bg: var(--zt-inquiry);
  --bs-btn-disabled-border-color: var(--zt-inquiry);
  font-family: var(--zt-font-body);
  font-weight: 500;
  border-radius: 9999px;
  border-width: 0;
  box-shadow: none !important;
  padding: 0.55rem 1.5rem;
}

.zt-btn-inquiry:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(221, 168, 74, 0.35) !important;
}

.zt-btn-inquiry.btn-sm {
  padding: 12px 28px;
  font-size: 16px;
}

.zt-btn-inquiry.btn-lg {
  padding: 0.75rem 1.85rem;
  font-size: 1rem;
}

.zt-btn-outline-light {
  border-width: 2px;
  font-weight: 500;
  padding: 0.65rem 1.75rem;
  border-radius: 2rem;
}

/* Section spacing */
.zt-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.zt-section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--zt-navy);
  margin-bottom: 0.75rem;
}

.zt-section-head > p,
.zt-section-head .zt-ig-lead p {
  color: var(--zt-sage);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.zt-section-head.text-center > p {
  margin-left: auto;
  margin-right: auto;
}

.zt-bestselling-treks .zt-section-head h2 {
  font-weight: 500;
  color: #1a1d24;
}

.zt-bestselling-treks .zt-section-head > p {
  color: #111111;
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 640px;
}

.zt-section-head--light h2 {
  color: #111;
  margin-bottom: 0.5rem;
}

.zt-section-head--light > p,
.zt-ig-lead p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

.zt-why-service-card-title {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 0.45rem;
}

.zt-why-service-card-desc p , .zt-why-service-card-desc {
  margin: 0;
  color: #111111;
  font-size: 14px;
  line-height: 1.55;
}

/* About — Bootstrap container, white, 50/50 split */
.zt-about-section {
  --zt-about-gold: #d4a353;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  overflow: visible;
}

.zt-about-split {
  min-height: 0;
}

.zt-about-col-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media (min-width: 992px) {
  .zt-about-col-visual {
    justify-content: flex-start;
    padding-right: 0.5rem;
  }
}

.zt-about-col-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

@media (max-width: 991.98px) {
  .zt-about-col-content {
    padding-top: 0.25rem;
  }
}

.zt-about-collage {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(0.65rem, 2vw, 1rem);
  min-height: 300px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  flex: 0 1 auto;
  position: relative;
}

@media (min-width: 992px) {
  .zt-about-collage {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    min-height: 400px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .zt-about-collage {
    min-height: 440px;
    gap: 1rem;
  }
}

@media (min-width: 1400px) {
  .zt-about-collage {
    min-height: 480px;
  }
}

.zt-about-collage-main {
  grid-row: 1 / span 2;
  grid-column: 1;
  border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
  min-height: 0;
}

.zt-about-collage-top,
.zt-about-collage-bottom {
  border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
  min-height: 0;
}

.zt-about-collage-top {
  grid-row: 1;
  grid-column: 2;
}

.zt-about-collage-bottom {
  grid-row: 2;
  grid-column: 2;
}

.zt-about-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zt-about-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(7.5rem, 23vw, 10rem);
  height: clamp(7.5rem, 23vw, 10rem);
  z-index: 3;
  filter: drop-shadow(0 14px 32px rgba(15, 31, 46, 0.16));
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zt-about-badge-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 31, 46, 0.06);
  pointer-events: none;
}

.zt-about-badge-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.4rem 0.35rem 0.35rem;
  gap: 0.35rem;
}

.zt-about-badge-text {
  display: block;
  font-size: clamp(0.58rem, 1.55vw, 0.72rem);
  font-weight: 500;
  text-transform: uppercase;
 
  color: var(--zt-about-gold);
  line-height: 1.2;
  max-width: 6rem;
  pointer-events: none;
}

.zt-about-play {
  /* position: relative;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center; */
  border:none
}

.zt-about-play:focus-visible {
  outline: 2px solid var(--zt-about-gold);
  outline-offset: 3px;
  border-radius: 50%;
}

.zt-about-play-pulse {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 2px solid rgba(212, 163, 83, 0.4);
  animation: zt-trail-play-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

.zt-about-play-btn {
  position: relative;
  z-index: 1;
  /* width: 38px;
  height: 38px;
  border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--zt-about-gold); */
  color: var(--zt-about-gold);
  /* box-shadow: 0 6px 18px rgba(212, 163, 83, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.25); */
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.zt-about-play:hover .zt-about-play-btn {
  transform: scale(1.08);
  /* background: #c49442;
  box-shadow: 0 8px 22px rgba(212, 163, 83, 0.5); */
}

.zt-about-play:active .zt-about-play-btn {
  transform: scale(1.02);
}

.zt-about-play-btn svg {
  display: block;
  margin-left: 2px;
}

.zt-about-panel {
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.zt-about-headline {
  position: relative;
  z-index: 1;
  font-family: var(--zt-font-display);
  font-size: clamp(1.6rem, 2.5vw + 0.45rem, 2.35rem);
  font-weight: 500;
  color: #1a1d24;
  line-height: 1.2;
  max-width: 36rem;
}

.zt-about-headline.zt-headline-photo-bg {
  isolation: isolate;
 
  margin-bottom: 1rem;
}

.zt-about-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.zt-about-intro p {
  margin: 0;
  font-size: 1rem;
  color: #111111;
  line-height: 1.65;
}

.zt-about-features {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.zt-about-feature-icon {
  color: var(--zt-about-gold);
  margin-bottom: 0.7rem;
}

.zt-about-feature-icon svg {
  display: block;
}

.zt-about-feature-title {
  font-family: var(--zt-font-display);
  font-size: 22px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.45rem;
}

.zt-about-feature-desc p {
  margin: 0;
  font-size: 0.9375rem;
  color: #111111;
  line-height: 1.55;
}

.zt-about-divider {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35rem;
  border: 0;
  border-top: 1px solid rgba(15, 31, 46, 0.1);
  opacity: 1;
}

.zt-about-cta {
  position: relative;
  z-index: 1;
}

.zt-about-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--zt-about-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(212, 163, 83, 0.35);
}

.zt-about-cta-label {
  font-size: 0.8125rem;
  color: #111111;
  margin-bottom: 0.15rem;
}

.zt-about-cta-num {
  font-family: var(--zt-font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--zt-about-gold);
  text-decoration: none;
}

.zt-about-cta-num:hover {
  color: #b88945;
}

.zt-about-book-btn {
  --bs-btn-bg: #d4a353;
  --bs-btn-border-color: #d4a353;
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #c49442;
  --bs-btn-hover-border-color: #c49442;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #b38438;
  --bs-btn-active-border-color: #b38438;
  --bs-btn-active-color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 0.65rem !important;
}

.zt-offcanvas-help-title p {
  margin: 0;
  font-weight: 500;
  color: #1f2430;
  font-size: 1rem;
}

/* Best-selling tour cards (Featured Treks Swiper) */
.zt-swiper-treks--tours .swiper-slide {
  height: auto;
}

.zt-tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--zt-white);
  border: 1px solid rgba(15, 31, 46, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zt-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(15, 31, 46, 0.14);
  color: inherit;
}

.zt-tour-card:focus-visible {
  outline: 3px solid rgba(221, 168, 74, 0.55);
  outline-offset: 3px;
}

.zt-tour-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.zt-tour-card-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .zt-tour-card-img {
    height: 240px;
  }
}

.zt-tour-card-badges {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.zt-tour-badge-featured {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background: var(--zt-inquiry);
}

.zt-tour-badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #fff;
  background: rgba(30, 35, 45, 0.55);
  backdrop-filter: blur(6px);
}

.zt-tour-badge-soft--icon {
  padding: 0.32rem 0.45rem;
}

.zt-tour-badge-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.zt-tour-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
}

.zt-tour-rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.zt-tour-stars {
  font-size: 22px;
  line-height: 1;
  color: var(--zt-orange);
}

.zt-tour-rating-label p {
  margin: 0;
  font-size: 0.8125rem;
  color: #111111;
  font-weight: 500;
  padding: 0;
}

.zt-tour-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #111827;
  margin: 0 0 0.65rem;
}

@media (min-width: 992px) {
  .zt-tour-card h3 {
    font-size: 18px;
  }
}

.zt-tour-meta-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: #3f3f3f;
  font-weight: 500;
}

.zt-tour-meta-icon {
  display: flex;
  color: #b0b8c4;
  flex-shrink: 0;
}

.zt-tour-meta-icon svg {
  width: 15px;
  height: 15px;
}

.zt-tour-divider {
  height: 1px;
  background: #eceef2;
  margin: 0 0 0.85rem;
}

.zt-tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.zt-tour-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: #111111;
  min-width: 0;
}

.zt-tour-location span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zt-tour-price {
  font-family: var(--zt-font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--zt-inquiry);
  flex-shrink: 0;
}

.zt-tour-price p {
  margin: 0;
}

/* Why Zentrek — services Swiper */
.zt-why-services {
  position: relative;
  background-color: #FDF8F1;
  overflow: hidden;
}

.zt-why-services::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image: var(--zt-headline-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.zt-why-services-inner {
  z-index: 1;
}

.zt-why-services-head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.zt-why-services-head.zt-headline-photo-bg {
  isolation: isolate;
  padding: clamp(1.15rem, 3vw, 1.65rem) clamp(1.25rem, 3vw, 1.75rem);
}

.zt-why-services-title {
  font-family: var(--zt-font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 500;
  color: #1a1d24;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.zt-why-services-sub p {
  margin: 0;
  font-size: 1.0625rem;
  color: #111111;
  line-height: 1.6;
}

.zt-why-service-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  height: 100%;
  min-height: 7.5rem;
  padding: 32px;
  background: var(--zt-white);
  border-radius: 1rem;
  border: 1px solid rgba(15, 31, 46, 0.05);
}

.zt-why-service-icon {
  padding: 20px;
  display: flex;
  align-items: center;
  background-color: #FDF8F1;
  border-radius: 16px;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  will-change: background-color;
}
.zt-why-service-icon img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  filter: brightness(0) saturate(100%) invert(70%) sepia(55%) saturate(503%) hue-rotate(351deg) brightness(90%) contrast(91%);
}

/* Hover effect */
.zt-why-service-card:hover .zt-why-service-icon,
.zt-why-service-icon:hover {
  background-color: #dda84a;
}

.zt-why-service-card:hover .zt-why-service-icon img,
.zt-why-service-icon:hover img {
 
  filter:none;
}

.zt-why-service-body {
  min-width: 0;
  text-align: left;
}

.zt-swiper-why.swiper {
  padding-bottom: 2.75rem;
}

.zt-swiper-why .swiper-slide {
  height: auto;
}

.zt-swiper-why .swiper-pagination {
  bottom: 0 !important;
}

.zt-swiper-why .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 5px !important;
  background: #d1d5db;
  opacity: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.zt-swiper-why .swiper-pagination-bullet-active {
  width: 11px;
  height: 11px;
  background: var(--zt-inquiry);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--zt-inquiry);
  transform: translateY(-1px);
}

/* Trail hero — destination strip + video modal trigger */
.zt-trail-hero {
  position: relative;
  color: #fff;
  padding: 70px 0px;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 96px;
}

.zt-trail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.zt-trail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 12, 20, 0.92) 0%,
    rgba(6, 12, 20, 0.78) 38%,
    rgba(6, 12, 20, 0.55) 100%
  );
  z-index: 1;
}

.zt-trail-hero-inner {
  z-index: 2;
  padding-top: 3.25rem;
  padding-bottom: 3.5rem;
}

.zt-trail-map {
  color: rgba(255, 255, 255, 0.92);
  
  
}
.zt-trail-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .zt-trail-map {
    margin: 0;
  }
}

.zt-trail-map-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.zt-trail-map-node {
  fill: rgba(255, 255, 255, 0.95);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1;
}

.zt-trail-map-label {
  fill: rgba(255, 255, 255, 0.88);
  font-family: var(--zt-font-body);
  font-size: 11px;
  font-weight: 500;
}

.zt-trail-copy {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .zt-trail-copy {
    margin-left: 0;
    margin-right: 0;
  }
}

.zt-trail-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.zt-trail-stars {
  font-size: 0.9rem;
  color: var(--zt-orange);
  line-height: 1;
}

.zt-trail-rating-label p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.zt-trail-script {
  font-family: var(--zt-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 500;
  font-style: italic;

  line-height: 1.1;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.15rem;
}

.zt-trail-title {
  font-family: var(--zt-font-display);
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #fff;
}

.zt-trail-desc p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
}

.zt-trail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.zt-trail-stat {
  text-align: center;
  position: relative;
}

.zt-trail-stat + .zt-trail-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.zt-trail-stat:first-child::before {
  display: none;
}

.zt-trail-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.35rem;
}

.zt-trail-stat-value p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}

.zt-trail-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.zt-trail-phone {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.zt-trail-phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(221, 168, 74, 0.2);
  color: var(--zt-inquiry);
  flex-shrink: 0;
}

.zt-trail-phone-kicker {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.15rem;
}

.zt-trail-phone-num {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.zt-trail-phone-num:hover {
  color: var(--zt-gold-soft);
}

.zt-trail-book-btn {
  font-weight: 500;
  text-transform: none;
  padding: 0.75rem 1.75rem;
  font-size: 14px;
}

@keyframes zt-trail-play-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
  .zt-trail-hero-inner {
    padding-bottom: 2.5rem;
  }
}

.zt-trail-video-modal .modal-header {
  background: #0a0e12;
}

.zt-trail-video-modal video {
  display: block;
  background: #111;
}

/* Testimonials — showcase (stacked cards + copy) */
.zt-testimonials-showcase {
  overflow: hidden;
  background: #FDF8F1;
}

.zt-testimonial-stack-wrap {
  position: relative;
  padding: 0.5rem 1.25rem 1.5rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .zt-testimonial-stack-wrap {
    justify-content: flex-start;
    padding-right: 2rem;
  }
}

.zt-swiper-testimonial-cards {
  width: 100%;
  max-width: 400px;
  height: min(460px, 72vh);
  margin-left: auto;
  margin-right: auto;
}

.zt-swiper-testimonial-cards.swiper {
  overflow: visible;
  padding-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .zt-swiper-testimonial-cards {
    height: 460px;
  }
}

.zt-swiper-testimonial-cards .swiper-slide {
  border-radius: 1.25rem;
}

.zt-tcard {
  position: relative;
  width: 100%;
  height: min(420px, 68vh);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #0f1a12;
  box-shadow: 0 28px 60px rgba(15, 31, 46, 0.22);
}

@media (min-width: 992px) {
  .zt-tcard {
    height: 440px;
  }
}

.zt-tcard-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.zt-tcard-bar {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.zt-tcard-name {
  font-family: var(--zt-font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
}

.zt-tcard-role p {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: #111111;
  font-weight: 500;
}

.zt-tcard-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.zt-tcard-stars {
  font-size: 0.75rem;
  color: var(--zt-orange);
  line-height: 1;
}

.zt-tcard-score {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
}

.zt-testimonial-copy {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .zt-testimonial-copy {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}

.zt-testimonial-heading {
  font-family: var(--zt-font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  color: #1a1d24;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.zt-testimonial-lead p {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  color: #111111;
  line-height: 1.55;
}

.zt-testimonial-quote-inner {
  font-family: var(--zt-font-display);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #111111;
  margin-bottom: 0.65rem;
}

.zt-testimonial-quote-inner p {
  margin: 0;
}

.zt-testimonial-attribution {
  font-family: var(--zt-font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--zt-navy);
  margin-bottom: 1.35rem;
}

.zt-testimonial-avatars {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.zt-testimonial-avatar-btn {
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px transparent;
}

.zt-testimonial-avatar-btn:hover {
  opacity: 0.85;
}

.zt-testimonial-avatar-btn.is-active {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--zt-inquiry);
}

.zt-testimonial-avatar-btn:focus-visible {
  outline: 3px solid rgba(221, 168, 74, 0.65);
  outline-offset: 3px;
}

.zt-testimonial-avatar-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Instagram strip */
.zt-instagram {
  background: #FDF8F1;
  color: var(--zt-white);
}

.zt-ig-placeholder {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  cursor: pointer;
}

/* Blog — latest news & articles */
.zt-blog-section-head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.zt-blog-section-title {
  font-family: var(--zt-font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.zt-blog-section-sub p {
  margin: 0;
  font-size: 1.0625rem;
  color: #111111;
  line-height: 1.55;
}

.zt-blog-card {
  position: relative;
  border-radius: 0.85rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 31, 46, 0.08);
  overflow: visible;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.zt-blog-card:hover {
  box-shadow: 0 14px 40px rgba(15, 31, 46, 0.12);
  transform: translateY(-3px);
}

.zt-blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
  overflow: hidden;
}

.zt-blog-card-link:hover {
  color: inherit;
}

.zt-blog-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem 0.85rem 0 0;
  background: #e5e7eb;
}

.zt-blog-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.zt-blog-card-body {
  position: relative;
  padding: 1.35rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  border-radius: 0 0 0.85rem 0.85rem;
}

.zt-blog-card-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0.32rem 0.7rem;
  border-radius: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #f4b042 0%, #e89420 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.zt-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.zt-blog-card-meta-icon {
  display: flex;
  color: #111111;
  flex-shrink: 0;
}

.zt-blog-card-date p {
  margin: 0;
  font-size: 0.8125rem;
  color: #111111;
  font-weight: 500;
}

.zt-blog-card-title {
  font-family: var(--zt-font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.zt-blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  align-self: flex-start;
}

.zt-blog-card-more-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
}

.zt-blog-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(17, 24, 39, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.zt-blog-card-link:hover .zt-blog-card-arrow {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

/* CTA — app promo (cream + topo + phone mockup) */
.zt-cta-app {
  position: relative;
  background-color: #111;
  overflow: hidden;
}

.zt-cta-app::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background: #000;
  /*background-image: url("../image/cta-background.webp");*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.zt-cta-app-inner {
  position: relative;
  z-index: 1;
}

.zt-cta-phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
  padding: 2rem 0 2.5rem;
  perspective: 1400px;
}
header .btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }
.btn:hover{
  background: #111;

}
.btn-black:hover{
  background: #D4AF37;
  color: #111;
}
.zt-cta-stylus {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: 14px;
  height: 220px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3f3f3, #e8e8e8);
  box-shadow: 4px 10px 24px rgba(0, 0, 0, 0.12);
  transform: rotate(12deg);
  z-index: 0;
}

@media (min-width: 992px) {
  .zt-cta-stylus {
    right: 4%;
  }
}

.zt-cta-phone {
  position: relative;
  z-index: 2;
  width: min(280px, 86vw);
  transform: rotateY(-16deg) rotateX(6deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: drop-shadow(0 28px 45px rgba(15, 31, 46, 0.18));
}

.zt-cta-phone-bezel {
  background: linear-gradient(145deg, #fafafa, #ececec);
  border-radius: 2.35rem;
  padding: 0.55rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 0 rgba(0, 0, 0, 0.04);
}

.zt-cta-phone-notch {
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 6px;
}

.zt-cta-phone-notch::after {
  content: "";
  width: 88px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #0f1f2e;
}

.zt-cta-phone-screen {
  background: linear-gradient(180deg, #f7f7f8 0%, #eef0f3 100%);
  border-radius: 1.85rem;
  padding: 0.85rem 0.95rem 1rem;
  min-height: 420px;
  border: 1px solid rgba(15, 31, 46, 0.06);
}

@media (max-width: 575.98px) {
  .zt-cta-phone-screen {
    min-height: 380px;
  }

  .zt-cta-phone-stage {
    min-height: 400px;
  }
}

.zt-cta-appbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.zt-cta-appbar-mark {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: var(--zt-inquiry);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zt-cta-appbar-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--zt-navy);
  line-height: 1.1;
}

.zt-cta-appbar-tag p {
  margin: 0;
  font-size: 0.7rem;
  color: #111111;
  font-weight: 500;
}

.zt-cta-screen-title {
  font-family: var(--zt-font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 0.45rem;
}

.zt-cta-screen-sub p {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: #111111;
  line-height: 1.45;
}

.zt-cta-screen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: var(--zt-inquiry);
  border: none;
  margin-bottom: 1rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.zt-cta-screen-btn:hover {
  background: var(--zt-inquiry-hover);
  color: #fff;
  transform: translateY(-1px);
}

.zt-cta-screen-field {
  background: #fff;
  border-radius: 0.65rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(15, 31, 46, 0.06);
  box-shadow: 0 4px 14px rgba(15, 31, 46, 0.04);
}

.zt-cta-screen-field-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 0.15rem;
}

.zt-cta-screen-field-hint p {
  margin: 0;
  font-size: 0.78rem;
  color: #374151;
  font-weight: 500;
}

.zt-cta-copy {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

@media (min-width: 992px) {
  .zt-cta-copy {
    margin-left: 0;
    margin-right: 0;
   
  }
}
  .zt-cta-copy.zt-cta-copy-1{
     display: flex;
        justify-content: flex-end; 
  }


.zt-cta-heading {
  font-family: var(--zt-font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.zt-cta-heading.zt-headline-photo-bg {
  position: relative;
  isolation: isolate;
 
  margin-bottom: 1rem;
}

.zt-cta-desc p {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #fff;
}

.zt-cta-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.zt-cta-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  min-height: 52px;
  border-radius: 0.65rem;
  background: #111827;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.zt-cta-store-badge:hover {
  color: #fff;
  background: #0b1220;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 31, 46, 0.2);
}

.zt-cta-store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zt-cta-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.zt-cta-store-line1 {
  font-size: 0.62rem;
  text-transform: uppercase;
  opacity: 0.88;
  font-weight: 500;
}

.zt-cta-store-line2 {
  font-size: 1.05rem;
  font-weight: 500;
}

/* Footer */
.zt-footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
  padding-top: 3rem;
  padding-bottom: 2.25rem;
  font-size: 0.9375rem;
}
.zt-footer .zt-footer-legal p{
    color:#fff;
}
.zt-footer a {
  color: #fff;
  text-decoration: none;
}

.zt-footer a:hover {
  color: var(--zt-nav-gold);
}

.zt-footer-top {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zt-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.zt-footer-brand-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border-radius: 0.35rem;
  padding: 0;
}

.zt-footer-brand-logo {
  display: block;
  height: auto;
  width: 120px;
  max-width: min(160px, 42vw);
  object-fit: contain;
}



.zt-footer-brand-name {
  font-family: var(--zt-font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.15;
}

.zt-footer-brand-tag p {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.zt-footer-social-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

.zt-footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zt-footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.zt-footer-social-btn:hover {
  color: var(--zt-nav-gold);
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.zt-footer-main {
  margin-bottom: 2rem;
}

.zt-footer-heading {
  font-family: var(--zt-font-display);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
}

.zt-footer-contact-list {
  margin: 0;
  padding: 0;
}

.zt-footer-contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.zt-footer-contact-item:last-child {
  margin-bottom: 0;
}

.zt-footer-contact-icon {
  flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 0.55rem;
    border: 1px solid rgb(41 41 41);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zt-nav-gold);
    background: rgb(41 41 41);
}

.zt-footer-contact-kicker {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  margin-bottom: 0.2rem;
}

.zt-footer-contact-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
}

a.zt-footer-contact-link:hover {
  color: var(--zt-nav-gold);
}

.zt-footer-link-list {
  margin: 0;
  padding: 0;
}

.zt-footer-link-list li {
  margin-bottom: 0.55rem;
}

.zt-footer-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f1f1f1;
      display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zt-footer-link::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  background: none;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path stroke='none' d='M0 0h24v24H0z' fill='none'/><path d='M9 6l6 6l-6 6'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path stroke='none' d='M0 0h24v24H0z' fill='none'/><path d='M9 6l6 6l-6 6'/></svg>") no-repeat center / contain;
  background-color: var(--zt-nav-gold);
  color: var(--zt-nav-gold);
  font-weight: 500;
  font-size: 16px;
  margin-right: 0.4rem;
  line-height: 1;
}

.zt-footer-link:hover {
  color: #fff;
}

.zt-footer-news-lead p {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.zt-footer-news-form {
  position: relative;
}

.zt-footer-news-input {
  width: 100%;
  padding: 0.65rem 3.25rem 0.65rem 0.9rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111;
  color: #fff;
  font-size: 0.9rem;
}

.zt-footer-news-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.zt-footer-news-input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.zt-footer-news-submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 0.45rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zt-nav-gold);
  color: #111;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.zt-footer-news-submit:hover {
  filter: brightness(1.08);
}

.zt-footer-news-agree {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.zt-footer-news-checkbox {
  margin-top: 0.2rem;
  flex-shrink: 0;
  border-color: rgba(255, 255, 255, 0.35);
  background-color: transparent;
}

.zt-footer-news-checkbox:checked {
  background-color: var(--zt-nav-gold);
  border-color: var(--zt-nav-gold);
}

.zt-footer-news-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
}

.zt-footer-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.zt-footer-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem 0.45rem 0.55rem;
  min-height: 46px;
  border-radius: 0.55rem;
  background: #0d0d0d;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.zt-footer-store-badge:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.zt-footer-store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zt-footer-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.zt-footer-store-line1 {
  font-size: 0.55rem;
  text-transform: uppercase;
  opacity: 0.88;
  font-weight: 500;
}

.zt-footer-store-line2 {
  font-size: 0.9rem;
  font-weight: 500;
}

.zt-footer-copy p {
  margin: 0;
  font-size: 0.8125rem;
  color: #fff;
}

.zt-footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.zt-footer-legal a:hover {
  color: var(--zt-nav-gold);
}

/* Swiper (content carousels — not hero) */
.zt-swiper-treks,
.zt-swiper-ig {
  padding-bottom: 2.5rem;
}

/* Best-selling tours: prev — dots — next (reference layout) */
.zt-swiper-treks.zt-swiper-treks--tours {
  padding-bottom: 0;
}

.zt-swiper-treks--tours .zt-treks-swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.5vw, 1.75rem);
  margin-top: 1.75rem;
  padding: 0 0.5rem 0.25rem;
}

.zt-swiper-treks--tours .zt-treks-nav-btn.swiper-button-prev,
.zt-swiper-treks--tours .zt-treks-nav-btn.swiper-button-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 31, 46, 0.08);
  box-shadow: 0 2px 10px rgba(15, 31, 46, 0.08);
  color: #374151;
  flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.zt-swiper-treks--tours .zt-treks-nav-btn.swiper-button-prev::after,
.zt-swiper-treks--tours .zt-treks-nav-btn.swiper-button-next::after {
  font-size: 0.75rem;
  font-weight: 500;
}

.zt-swiper-treks--tours .zt-treks-nav-btn.swiper-button-prev:hover,
.zt-swiper-treks--tours .zt-treks-nav-btn.swiper-button-next:hover {
  background: #fafafa;
  box-shadow: 0 4px 16px rgba(15, 31, 46, 0.12);
  transform: translateY(-1px);
}

.zt-swiper-treks--tours .zt-treks-nav-btn.swiper-button-disabled {
  opacity: 0.38;
  pointer-events: none;
  transform: none;
  box-shadow: 0 2px 8px rgba(15, 31, 46, 0.05);
}

.zt-swiper-treks--tours .zt-treks-nav-btn:focus-visible {
  outline: 2px solid var(--zt-inquiry);
  outline-offset: 3px;
}

.zt-swiper-treks--tours .zt-treks-swiper-pagination.swiper-pagination-horizontal {
  position: static;
  inset: auto;
  width: auto;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 28px;
  transform: none;
  display:none;
}

.zt-swiper-treks--tours .zt-treks-swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 6px !important;
  background: #d1d5db;
  opacity: 1;
  vertical-align: middle;
  transition: background 0.2s ease, outline 0.2s ease, transform 0.2s ease;
  display:none;
}

.zt-swiper-treks--tours .zt-treks-swiper-pagination .swiper-pagination-bullet-active {
  width: 7px;
  height: 7px;
  background: var(--zt-inquiry);
  outline: 2px solid var(--zt-inquiry);
  outline-offset: 4px;
  border-radius: 50%;
  
}

.zt-swiper-treks--tours .zt-treks-swiper-pagination .swiper-pagination-bullet-active:hover {
  background: var(--zt-inquiry-hover);
  outline-color: var(--zt-inquiry-hover);
}

.zt-swiper-ig .swiper-pagination-bullet-active {
  background: var(--zt-gold);
}

/* Navbar toggler (default Bootstrap icon — banner uses .zt-nav-menu-grid SVG) */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-black{
  background: #111;
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;  
}
.black-header{
  background: #111;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  background-color: transparent;
  margin: 0;
}
.breadcrumb a {
  transition: opacity 0.3s ease, color 0.3s ease;
  color: var(--zt-nav-gold) !important;
  text-decoration: none;
}
.breadcrumb .current {
  color: var(--text-color);
  opacity: 1;
  font-weight: 500;
}
.breadcrumb-item+.breadcrumb-item::before{
  content: none;
}
.breadcrumb-item.dot::before {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 12px;
  height: 12px;
  margin-inline: 1px 1px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'><path stroke='none' d='M0 0h24v24H0z' fill='none'/><path d='M9.707 5.293l6 6a1 1 0 0 1 0 1.414l-6 6a1 1 0 1 1 -1.414 -1.414l5.293 -5.293l-5.293 -5.293a1 1 0 0 1 1.414 -1.414' /></svg>")
    no-repeat center center/contain;
}

/* Treak detail */
/* Sidebar Stickiness */
.sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 20%; /* Distance from top of viewport when scrolling */
  z-index: 1000;
}

/* Typography & Visuals */
.section-title {
  margin-bottom: 1.5rem;
  color: #2d3436;
  font-size: clamp(1.75rem, 3.5vw, 2rem);
}

.lead-text {
  color: #636e72;
  line-height: 1.8;
}

.fact-row {
  font-size: 0.95rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f1f1;
}

/* Itinerary Timeline decoration */
.day-dot {
  position: absolute;
  left: -7px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #dda84a;
  border-radius: 50%;
}

.card-header .text-warning {
  color: #f1c40f !important;
}

.btn-primary {
  background-color: #dda84a;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #dda84a;
  transform: translateY(-2px);
}
.heighlight{
    background:#fffdfb !important;
    border:1px solid #f0f0f0;
}
.trekdetail-info-span{
    margin-top:20px;
}
.trekdetail-info-span span{
    font-size:14px;
}
.heighlight ul{
  position: relative;
  display: inline-block;
  padding: 0;
}
.heighlight ul li{
  list-style: none;
  width: 50%;
  float: left;
  margin-bottom: 10px;
  position: relative;
    padding-left: 23px;
}
.heighlight ul li::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  margin-right: 0.4rem;
  background-color: var(--zt-nav-gold);
  /* Proper mask usage for SVG checkmark */
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path stroke='none' d='M0 0h24v24H0z' fill='none'/><path d='M9 6l6 6l-6 6'/></svg>");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path stroke='none' d='M0 0h24v24H0z' fill='none'/><path d='M9 6l6 6l-6 6'/></svg>");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
      position: absolute;
    left: 0;
    top: 4px;
}
 /* Itinerary design styles */
/* Container for the timeline */
.itinerary-timeline {
  border: none !important;
}

.itinerary-timeline .accordion-item {
  border: none;
  background: transparent;
  position: relative;
  padding-left: 20px; /* Space for the line */
}

/* The Vertical Dashed Line */
.itinerary-timeline .accordion-item::before {
      content: "";
    position: absolute;
    left: 17px;
    top: 16px;
    bottom: -31px;
    width: 2px;
    border-left: 2px dashed #dcb058;
    z-index: 1;
}

/* Remove line from the last item */
.itinerary-timeline .accordion-item:last-child::before {
  display: none;
}

/* Accordion Button Styling */


/* The Gold Check Circle */
.day-icon {
    width: 30px;
    height: 30px;
    background-color: #dcb058;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-right: 20px; */
    z-index: 2;
    position: relative;
    font-size: 18px;
    left: -17px;
}
.day-icon svg{
    width: 14px;
    height: 14px;
}
/* Text alignment */
.day-title {
  font-size: 1.1rem;
}

/* Accordion Body */
.itinerary-timeline .accordion-body {
  padding: 0 0 30px 35px; /* Align text under the title, not the icon */
  border: none;
}

/* Rotate Chevron Icon adjustment */
.itinerary-timeline .accordion-button::after {
  background-size: 1rem;
  margin-left: auto;
}
/* Inclusion Card Base */
.inclusion-card {
  background: #fffdfb;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.inclusion-card p{
    margin:10px 0px;
}
.inclusion-card ul{
    margin:0px;
    padding:0px;
    margin-bottom:15px;
    margin-top: 0px !important;
}
.inclusion-card ul li{
    font-size: 15px;
    color: #4a4a4a;
    padding: 10px 0;
    border-bottom: 1px solid #f8f8f8;
    display: flex;
    align-items: center;
    line-height:25px;
    margin-bottom: 0px !important;
}
.inclusion-card ul li:last-child {
    border-bottom: none;
}
.inclusion-header{
    margin-bottom:30px;
}
.inclusion-header h3 , .inclusion-card h3 , .inclusion-card h4 , .inclusion-card h2{
  font-size: 20px;
  font-weight: 500;
}
/* Header Icons */
.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.bg-success-light { background-color: #eafaf1; }
.bg-danger-light { background-color: #fff5f5; }

/* List Styling */
.inclusion-list li {
  font-size: 1rem;
  color: #4a4a4a;
  padding: 10px 0;
  border-bottom: 1px solid #f8f8f8;
  display: flex;
  align-items: center;
}

.inclusion-list li:last-child {
  border-bottom: none;
}

.inclusion-list li i {
  margin-right: 12px;
  font-size: 1.1rem;
}

/* Sidebar Price Customization for your request */
.sidebar-sticky-price {
  position: sticky;
  top: 2rem;
  z-index: 1020;
}

.price-box {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
}

.btn-book {
  background-color: #dcb058; /* Gold color from image */
  color: white;
  font-weight: 500;
  border: none;
}

.btn-book:hover {
  background-color: #c49a4a;
  color: white;
}

/* Container styling */
.facts-grid {
  background-color: transparent;
}

/* The Icon Box (Rounded Square) */
.fact-icon {
  width: 60px;
  height: 60px;
  background-color: #fdf8f0; /* Soft cream background */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.fact-icon i {
  color: #c5a059; /* Brand Gold */
  font-size: 1.5rem;
}
.sticky-sidebar .card-header h2{
  font-size:30px
}
/* Text Styling */
.fact-content small {
  display: block;
  color: #7a7a7a;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.fact-content h3 {
  margin: 0;
  font-weight: 500;
  color: #111;
  font-size: 15px;
}

/* Responsive adjustment for small screens */
@media (max-width: 576px) {
  .fact-icon {
      width: 45px;
      height: 45px;
      margin-right: 10px;
  }
  .fact-icon i {
      font-size: 1.1rem;
  }
  .fact-content h6 {
      font-size: 0.9rem;
  }
}

.trek-detail-swiperslider {
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
}
/* Swiper slide styling */
.trek-detail-swiperslider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;

}
/*@media (max-width: 768px) {
  .trek-detail-swiperslider .swiper-slide {
    height: 200px;
  }
}*/
.trek-detail-swiperslider .swiper-slide img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
}
/* Swiper Dots Custom Color */
.trek-detail-swiperslider .swiper-pagination-bullet {
  background: #dda84a !important;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.trek-detail-swiperslider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* FAQ Container Styling */
.custom-faq .accordion-item {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #eee; /* Light divider like the image */
  background-color: transparent;
}

.custom-faq .accordion-item:last-child {
  border-bottom: none;
}

/* Question Styling */
.custom-faq .accordion-button {
  padding: 20px 0;
  font-weight: 500;
  font-size: 1.05rem;
  color: #111111;
  background-color: transparent !important;
  box-shadow: none !important;
}
.sticky-sidebar .accordion-button:not(.collapsed) ,.sticky-sidebar .accordion-button:focus{
  box-shadow: none !important;
}
#inquiryModal {
  z-index: 9;
}
#groupSizeCollapse td{
  font-size: 14px;
}
#groupSizePricingAccordion button{
  font-size: 15px;
  font-weight: 500;
  color: #111;
}
.card-body ul{
  display: inline-block;
}
.card-body ul li{
  width: 50%;
  float: left;
  margin-bottom: 10px;
  list-style: none;
}
.card-body ul li::before{
content: "";
display: inline-block;
vertical-align: middle;
width: 1.1em;
height: 1.1em;
margin-right: 8px;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1.1em" height="1.1em" fill="currentColor" viewBox="0 0 16 16"><path d="M13.485 3.929a.75.75 0 0 1 1.06 1.06l-7.272 7.273a.75.75 0 0 1-1.06 0l-3.182-3.182a.75.75 0 1 1 1.06-1.06l2.652 2.652 6.742-6.743z" fill="%23c5a059"/></svg>') no-repeat center center;
background-size: 1em 1em;
}
/* Remove default blue focus and background */
.custom-faq .accordion-button:not(.collapsed) {
  color: #c5a059; /* Brand Gold color when open */
}

/* Answer Styling */
.custom-faq .accordion-body {
  padding: 0 0 20px 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Optional: Customizing the Chevron Icon color */
.custom-faq .accordion-button::after {
  background-size: 1rem;
  filter: grayscale(1); /* Makes the icon subtle */
  opacity: 0.5;
}
.map-container {
  position: relative;
  /* This ensures the map looks crisp and maintains a modern feel */
  filter: grayscale(10%) contrast(105%); 
  transition: filter 0.3s ease;
}

.map-container:hover {
  filter: grayscale(0%);
}

.map-container iframe {
  display: block;
  vertical-align: middle;
      width: 100%;
}

/* Matching the gold icon color from your previous sections */
.text-gold {
  color: #c5a059 !important;
}

.rounded-4 {
  border-radius: 1.5rem !important;
}

@media(max-width: 992px) {
  .heighlight ul li{
    width: 100%;
  }
}

/* Section Labels & Numbers */
.section-label { 
  font-weight: 800; 
  font-size: 18px; 
  text-transform: uppercase; 
 margin-bottom: 25px;
  color: #111; /* Gold Accent */
  display: flex;
  align-items: center;
}
.form-check{
  padding-left: 0px;
}
.form-section label{
  margin-bottom: 10px;
}
.label-number {
  width: 28px;
  height: 28px;
  background: #c5a059;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 16px;
}

/* Custom Input Fields */
.custom-field {
  border: 1px solid #eee;
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.custom-field:focus {
  background: #fff;
  border-color: #c5a059;
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.1);
}

/* Add-on Chip Styling */
.custom-chip label {
  padding: 8px 22px;
  border: 1px solid #eee;
  border-radius: 50px;
  cursor: pointer;
  background: #fff;
  font-size: 0.85rem;
  transition: 0.3s ease;
}
.custom-chip input:checked + label {
  background: #c5a059;
  color: #fff;
  border-color: #c5a059;
}

/* Payment Method Selection */
.pay-btn {
  border: 1px solid #eee;
  background: #fcfcfc;
  border-radius: 12px;
  padding: 15px 5px;
  color: #666;
  transition: 0.3s;
}
.pay-btn:hover { border-color: #c5a059; background: #fff8eb; }
.btn-check:checked + .pay-btn {
  border-color: #c5a059;
  background: #fff8eb;
  color: #c5a059;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.1);
}

/* Submit Button & Badges */
.btn-gold-action {
  background: #c5a059;
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
  transition: 0.3s;
}
.btn-gold-action:hover {
  background: #b08d4a;
  color: #fff;
  transform: translateY(-2px);
}
.trust-pill {
  font-size: 0.8rem;
  color: #777;
  background: #f1f1f1;
  padding: 5px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
}
.trust-pill i { margin-right: 6px; }

/* General Layout Utilities */
.rounded-4 { border-radius: 1.5rem !important; }

/* Table Layout */
.departure-table {
    border-collapse: separate;
    border-spacing: 0;
}

.departure-table thead th {
    font-size: 0.85rem;
    text-transform: uppercase;
   
    font-weight: 500;
    border: none;
}

.departure-table tbody tr {
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.departure-table tbody tr:hover {
    background-color: #fdfaf4; /* Very light gold tint */
}

/* Status Dot Indicator */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

/* Custom Gold Text and Button */
.text-gold {
    color: #c5a059 !important;
}

.btn-gold-sm {
    background-color: #c5a059;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 20px;
    transition: 0.3s ease;
}

.btn-gold-sm:hover {
    background-color: #111;
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .departure-table {
        min-width: 500px; /* Ensure table remains readable on small screens */
    }
}
/* --- FIXED DEPARTURE TABLE PREMIUM STYLING --- */

/* Section Container */
.departure-table-section {
  padding: 2.5rem 0 2rem 0;
  border-radius: 1.25rem;
}

/* Header Adjustments */
.departure-table-section h3 {
 
  color: #2b2113;
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

/* Card & Table Wrapper */
.departure-table-section .card {
  border: 1px solid #ede6d4;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(195,168,83,0.08);
}
.depature-table-style{
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}
/* Table Head - Elegant & Simple */
.departure-table thead {
  background: #fffbe8;
  border-bottom: 2px solid #c5a059;
}

.departure-table th {
  font-size: 0.91rem;
  font-weight: 500;
  text-transform: uppercase;
 
  color: #fff;
  background: transparent;
  padding: 1.05rem 1rem;
  border: none;
}

/* Table Body Rows */
.departure-table tbody tr {
  border-bottom: 1px solid #f3ead8;
  background: #fff;
}

.departure-table tbody tr:last-child {
  border-bottom: none;
}

/* No hover effect anymore! */

/* Cell Styling */
.departure-table td {
  padding:1.05rem 1rem;
  vertical-align: middle;
  color: #473812;
  background: transparent;
  font-size: 0.99rem;
}

/* Date & Details Styling */
.departure-table .fw-bold {
  color: #231e18;
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.departure-table .text-muted {
  font-size: 0.84rem;
  font-weight: 500;
  color: #8a753e !important;
  opacity: 0.84;
}

/* Status Indicators */
.status-indicator {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  background: #d9b36a;
  box-shadow: 0 1px 3px #ddb96d22;
}

.bg-success.status-indicator {
  background: #83d96c;
}
.bg-warning.status-indicator {
  background: #ffe08b;
}
.bg-danger.status-indicator {
  background: #fd8d68;
}

.bg-success.status-indicator::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  background: #b8e7a2;
  border-radius: 50%;
  opacity: 0.2;
  animation: statusPulse 2s infinite;
}

/* Pulse keyframes for 'Available' status */
@keyframes statusPulse {
  0%   { transform: scale(1); opacity: 0.16; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Pricing Highlight */
.departure-table td:nth-child(4) {
  font-size: 16px;
 
  color: #111;
  font-weight: 500;
}

/* Join Group Button */
.btn-gold-sm {
  background: #c7a64d;
  color: #111;
  border: none;
  font-size: 0.87rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 1.2rem;
}

.btn-gold-sm:hover,
.btn-gold-sm:focus {
  background: #111;
  color: #fffce0;
  box-shadow: 0 3px 13px rgba(191, 146, 56, 0.18);
  outline: none;
}

/* Disabled Outline Button */
.btn-outline-secondary{
  background: #d4af37;
  --bs-btn-border-color: #d4af37;
  color: #111;
}
.btn-outline-secondary:disabled {
  border: 1px solid #e2dfd1;
  background: #f8f6f0;
  color: #b3a678;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.95;
  border-radius: 1rem;
}
.table>:not(caption)>*>*{
  border-bottom-width: 0;
}

/* Responsiveness */
@media (max-width: 768px) {
  .departure-table {
      min-width: 650px;
  }
  .departure-table-section {
      padding: 1rem 0 0.5rem 0;
      border-radius: 0.64rem;
  }
  .departure-table-section h3 {
      font-size: 1.16rem;
      margin-bottom: 0.8rem;
  }
  .departure-table-section .card {
      border-radius: 0.84rem;
      box-shadow: 0 1px 6px 0 rgba(180, 152, 80, 0.10);
  }
  .departure-table th,
  .departure-table td {
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      font-size: 0.91rem;
      width:100px;
  }
  .departure-table button{
          padding: 10px 18px !important;
          width:120px;
  }
  .departure-table td:nth-child(4){
      font-size:14px;
  }
}

/* WhatsApp and Move to Top floating buttons */
.zt-float-buttons {
  position: fixed;
  z-index: 2048;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.zt-float-whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
.zt-float-whatsapp:hover, .zt-float-whatsapp:focus {
  box-shadow: 0 4px 18px 2px rgb(37 211 102 / 38%);
  transform: scale(1.10);
  color: #fff;
  text-decoration: none;
}
.zt-float-movetop {
  background: #222;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 18%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 2rem;
}

.zt-float-movetop:hover, .zt-float-movetop:focus {
  background: #111;
  color: #fff;
  transform: scale(1.10);
  box-shadow: 0 4px 14px 2px rgb(34 34 34 / 28%);
}
@media (max-width: 767px) {
  .zt-float-buttons {
    right: 14px;
    bottom: 18px;
  }
  .zt-float-whatsapp, .zt-float-movetop {
    width: 46px;
    height: 46px;
    font-size: 1.6rem;
  }
}


/* Blog Hero Section */
/* .blog-hero {
  background-size: cover !important;
  background-position: center !important;
  min-height: 400px;
  display: flex;
  align-items: center;
} */
.breadcrumb-section{
  padding: 10px 0px;
}
.text-gold { color: #c5a059 !important; }
.bg-gold { background-color: #c5a059 !important; }
.border-gold { border-color: #c5a059 !important; }

/* Breadcrumb Styling */
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* Share Icons Sidebar */
.share-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #eee;
  border-radius: 50%;
  color: #888;
  transition: all 0.3s ease;
  display: inline-block;
}

.share-icon:hover {
  background-color: #c5a059;
  color: white;
  border-color: #c5a059;
  transform: translateY(-3px);
}

/* Typography & Content */
.blog-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
}

.blog-content h3 {
  margin-top: 2rem;
  color: #111;
}

/* Related Posts sidebar */
.extra-small {
  font-size: 0.75rem;
}

.related-post-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.btn-gold {
  background-color: #c5a059;
  color: white;
  border: none;
  transition: 0.3s;
}

.btn-gold:hover {
  background-color: #b08d4a;
  color: white;
}

/* Responsive adjust */
@media (max-width: 991px) {
  .blog-hero h1 { font-size: 2.2rem; }
}

/* Color Palette */
.text-gold { color: #c5a059 !important; }

/* Contact Icons */
.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: #fff8eb;
    color: #c5a059;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Social Circles */
.social-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.social-circle:hover {
    background-color: #c5a059;
    color: white;
    border-color: #c5a059;
    transform: translateY(-3px);
}

/* Form Fields */
.contact-field {
    border: 1px solid #f0f0f0;
    background-color: #fcfcfc;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: 0.3s;
}

.contact-field:focus {
    background-color: #ffffff;
    border-color: #c5a059;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
    outline: none;
}

/* Submit Button */
.btn-gold-action {
    background-color: #111;
    color: #c5a059;
    border: none;
    transition: 0.3s;
}

.btn-gold-action:hover {
    background-color: #c5a059;
    color: white;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Map Styling */
.map-wrapper {
    line-height: 0;
    filter: grayscale(0.2);
    transition: filter 0.5s;
}

.map-wrapper:hover {
    filter: grayscale(0);
}

/* 1. Register a generic integer property */
@property --n {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.facts-premium-section {
    background-color: #111; 
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 30px 30px;
}

.glass-fact-card {
    background: rgb(221 168 74 / 10%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgb(221 168 74);
    border-radius: 18px;
    padding: 45px 20px;
    text-align: center;
    color: #ffffff;
}

/* 2. The Animation Logic */
.count-up {
    /* animate the custom property --n to the --target value from HTML */
    animation: count-anim 3s forwards ease-in-out;
    counter-reset: num var(--n);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

/* Display the number using the counter */
.count-up::after {
    content: counter(num) attr(data-suffix);
}

/* 3. The generic keyframe */
@keyframes count-anim {
    from { --n: 0; }
    to { --n: var(--target); }
}

.fact-desc {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
font-family: var(--zt-font-body);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}
.team-card h3{
  font-size: 23px;
}
.accordion-header{
  font-family: var(--zt-font-body);
}
/* --- TESTIMONIALS STYLING --- */

.testimonial-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #eaeaea;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

/* Featured Card subtly stands out */
.testimonial-card.featured {
  border-color: #dda84a;
  box-shadow: 0 15px 40px rgba(221, 168, 74, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Rating Stars */
.rating i {
  color: #dda84a;
  margin-right: 2px;
  font-size: 0.9rem;
}

/* Quote Marks Decoration */
.testimonial-card::before {
  content: "\F66D"; /* Bootstrap Icons Quote icon */
  font-family: "bootstrap-icons";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #f8f9fa;
  z-index: 0;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  position: relative;
  z-index: 1;
}

/* Reviewer Image */
.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #eee;
}

.reviewer-meta h6 {
  font-size: 1rem;
  color: #111;
}

.reviewer-meta small {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
/* --- 404 PAGE STYLING --- */

.error-404-wrapper {
 
  padding: 70px 0;
  background-color: #fcfcfc;
}

.text-gold {
  color: #dda84a !important;
}

/* 404 Large Text */
.display-1 {
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  letter-spacing: -5px;
  opacity: 0.15;
  position: relative;
}

/* Mountain Divider */
.mountain-divider {
  font-size: 3rem;
  margin-top: -60px;
  color: #dda84a;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Buttons */
.btn-gold-lg {
  background-color: #dda84a;
  color: #111;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(221, 168, 74, 0.2);
}

.btn-gold-lg:hover {
  background-color: #111;
  color: #dda84a;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Quick Links Hover */
.hover-gold {
  transition: color 0.3s ease;
  font-weight: 500;
}

.hover-gold:hover {
  color: #dda84a !important;
}

/* Responsive adjustment */
@media (max-width: 776px) {
  .mountain-divider {
      font-size: 2rem;
      margin-top: -40px;
  }
  .zt-hero-banner{
    min-height: 73dvh;
  }
  .zt-about-headline.zt-headline-photo-bg{
    margin-top: 30px;
  }
  .zt-about-feature{
    text-align: center;
    background: #fdf8f1;
    padding: 10px;
    border-radius: 10px;
  }
  .zt-about-feature-title{
    font-size: 18px;
  }
}

.pt-30{
  padding-top: 30px;
}

.goog-te-banner-frame.skiptranslate {display: none !important;} 

.goog-te-combo {
  margin-left: 5px;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 1rem;
  min-width: 120px;
}
/* .zt-translate-bar {
  padding: 0.4rem 0 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fffce8;
  border-bottom: 1px solid #ecc74c55;
  font-size: 15px;
  position: relative;
  z-index: 2010;
  justify-content: flex-end;
} */
.goog-te-gadget-simple {
  background-color: #d4af37 !important;

  font-size: 16px !important;
  display: inline-block;
  padding-top: 1px;
  padding-bottom: 2px;
  cursor: pointer;
  border-radius: 10px !important;
  border-color: #d4af37 !important;
  padding: 12px !important;
}
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span{
  color: #111 !important;
}
@media (min-width: 992px) {
  .zt-translate-bar {
    /* position: fixed;
    bottom: 22px;
    left: 22px; */
 
    background: transparent;
    border: 0;
    z-index: 2020;
    font-size: 15px;
    padding: 0;
  }
}
/* Hide standard Google Translate elements */
#google_translate_element, 
.goog-te-gadget, 
.skiptranslate {
    display: none !important;
}


/* Main Dropdown Container */
.flag-dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}
.flag-dropdown a{
  color: #111;
  text-decoration: none;
}.flag-dropdown a span{
  padding-left: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-radius: 30px;
  background-color: #ffffff;
 
}
/* The Clickable Dropdown Button */
.dropdown-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
}
@media(max-width:1399px){
  .dropdown-btn{
    padding: 8px 12px;
    font-size: 12px;
  }
  .zt-banner-menu .nav-link{
    font-size: 11px;
  }
  .zt-btn-inquiry.btn-sm{
    font-size: 14px;
    display:none !important;
  }
  .zt-banner-logo-img{
      width:80px;
  }
  
}
.dropdown-btn img, .dropdown-content img {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

.arrow {
    margin-left: auto;
    font-size: 10px;
}

/* Dropdown Menu (Hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: -webkit-fill-available;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 999;
    margin-top: 4px;
}

/* Show class triggered by JavaScript */
.dropdown-content.show {
    display: block;
}

/* Dropdown Links */
.dropdown-content a {
    color: #333333;
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* Hover effects */
/* .dropdown-content a:hover {
    background-color: #f1f1f1;
} */
/* .dropdown-btn:hover {
    background-color: #f9f9f9;
} */
.flag-dropdown ul{
  padding: 0;
  margin: 0;
}
.flag-dropdown ul li{
  list-style: none;
  padding:0px ;
  text-align: center;
  border-bottom: 1px solid gainsboro;
}
.flag-dropdown ul li:last-child{
  border-bottom: none;
}
.blog-content img{
  width: 100%;
  border-radius: 10px;
  margin: 10px 0px;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #fdfdfd;
  overflow-x: auto;
  display: table;
}
.blog-content caption {
  caption-side: top;
  font-weight: 500;
  font-size: 1.09rem;
  color: #4C3828;
  padding-bottom: 0.45rem;
  text-align: left;
}
.blog-content th,
.blog-content td {
  border: 1px solid #e0e0e0;
  padding: 0.75rem 0.7rem;
  text-align: left;
  font-size: 1rem;
  white-space: nowrap;
}
.blog-content th {
  background: #f5efe6;
  font-weight: 500;
  color: #242013;
}
.blog-content tr:nth-child(even) td {
  background: #faf7f2;
}
.blog-content tr:hover td {
  background: #f7f0e7;
  transition: background 0.17s;
}
 /* Active accordion button */
.itinerary-timeline .accordion-button:not(.collapsed) {
    background: #f5f9ff;
    color: #b69323;
    font-weight: 600;
}

/* Active icon */
.itinerary-timeline .accordion-button:not(.collapsed) .day-icon {
    background: #b69323;
    color: #fff;
}

/* Active timeline item */
.itinerary-timeline .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: #b69323;
}
.itinerary-timeline .accordion-button.collapsed {
    background: #fff;
    color: #333;
}
.itinerary-timeline .accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  padding: 15px 0;
  display: flex;
  align-items: center;
  color: #111111;
  font-weight: 500;
}
/*.accordion-button:not(.collapsed)*/
/* {*/
/*    color: #c5a059 !important*/
/*}*/
/*.collapse:not(.show){*/
/*    color:#000;*/
/*}*/
/* Responsive Table */
@media (max-width: 767.98px) {
  .zt-ecb-detail{
    overflow:hidden
  }
  .blog-content table,
  .blog-content thead,
  .blog-content tbody,
  .blog-content th,
  .blog-content td,
  .blog-content tr {
    display: block;
    width: 100%;
  }
  .blog-content thead {
    display: none;
  }
  .blog-content tr {
    margin-bottom: 1.25rem;
    background: #fff !important;
    border-radius: 7px;
    box-shadow: 0 3px 8px 0 rgba(67, 57, 37, 0.05);
    border: 1px solid #efe9e0;
    overflow: hidden;
    padding: 0.5rem 0;
  }
  .blog-content td {
    border: none;
    border-bottom: 1px solid #ececec;
    background: none;
    position: relative;
    padding-left: 40%;
    min-height: 40px;
    text-align: left;
    font-size: 0.98rem;
    white-space: normal;
  }
  .blog-content td:last-child {
    border-bottom: none;
  }
  .blog-content td:before {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 500;
    color: #7e674b;
    white-space: nowrap;
    font-size: 0.97rem;
    content: attr(data-label);
    opacity: 0.85;
    letter-spacing: 0.01em;
  }
  .blog-content caption {
    font-size: 1rem;
    text-align: left;
    padding-bottom: 0.3rem;
  }
  .day-title {
    font-size: 16px;
    padding-left: 25px;
}
.day-icon{
    position: absolute;
}
.zt-about-intro{
    margin-top:20px;
}
.zt-trail-book-btn{
    font-size:13px;
}
.zt-trail-phone-num {
    font-size: 15px;
}
.itinerary-timeline .accordion-body {
    padding: 0 0 16px 27px;
    border: none;
}
.start-end-point{
    flex-direction:column;
}
.breadcrumb{
    font-size:11px;
}
}






    .gallery-modal-content {
      background: #000 !important;
      border-radius: 20px;
      padding: 0;
    }

    .gallery-image-main-box {
      min-height: 450px;
      background: transparent !important;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none !important;
      position: relative;
    }

    .gallery-main-img {
      max-width: 960px;
      width: 100%;
      max-height: 480px;
      object-fit: cover;
      transition: box-shadow .18s;
      z-index: 2;
    }

    .gallery-thumbs-row {
      width: 100%;
    }

    .gallery-thumb {
      width: 74px;
      height: 55px;
      object-fit: cover;
      border-radius: 6px;
      border: 2px solid transparent;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
      cursor: pointer;
      transition: border .18s, box-shadow .16s;
    }

    .gallery-thumb-active,
    .gallery-thumb:focus {
      border: 2.5px solid #fff;
      box-shadow: 0 0 0 2px #ecc74c, 0 0 8px #0002;
      outline: none;
    }

    .btn-close-white {
      filter: invert(1) grayscale(1) brightness(3);
    }

    .gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      background: rgba(32, 32, 32, 0.58);
      border: none;
      border-radius: 50%;
      z-index: 8;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: background .15s;
      padding: 0;
      cursor: pointer;
    }

    .gallery-arrow.left {
      left: 24px;
    }

    .gallery-arrow.right {
      right: 24px;
    }

    .gallery-arrow:hover,
    .gallery-arrow:focus {
      background: #ecc74c;
      color: #150a00;
      box-shadow: 0 2px 18px 0 #0002;
      outline: none;
    }

    @media (max-width: 767.98px) {
      .gallery-image-main-box {
        min-height: 240px;
      }

      .gallery-main-img {
        max-width: 98vw;
        max-height: 240px;
        border-radius: 10px;
      }

      .gallery-thumb {
        width: 64px;
        height: 42px;
      }

      .gallery-arrow {
        width: 38px;
        height: 38px;
        left: 3px;
        right: auto;
        font-size: 1.25rem;
        top: 55%;
      }

      .gallery-arrow.right {
        left: auto;
        right: 3px;
      }
    }

    .group-size-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
    }

    .group-size-table th {
      font-weight: 600;
      color: #222;
      font-size: 1.01rem;
      border: none;
      background: transparent;
      padding: 0;
      padding-bottom: 0.45rem;
      position: relative;
    }
    .group-size-table tbody tr {
      position: relative;
    }

    .group-size-table tbody tr::after {
      content: '';
      display: block;
      border-bottom: 1px dashed #bccada;
      width: 100%;
      height: 0.8em;
      position: absolute;
      left: 0;
      right: 0;
      top: 20%;
      z-index: 1;
    }

    .group-size-table tbody tr td span {
      background: #fdf8f0;
      position: relative;
      z-index: 999;
      padding: 0px 10px 0px 4px;
    }

    .group-size-table th:last-child,
    .group-size-table td:last-child {
      text-align: right;
    }

    .group-size-table .price-cell {
      white-space: nowrap;
    }

    .group-size-table td {
      vertical-align: middle;
      border: none;
      background: transparent;
      padding: 0.55rem 0;
    }

    @media (max-width: 575px) {

      .group-size-table td,
      .group-size-table th {
        font-size: 0.99rem;
      }
    }
