/* ==========================================================================
   Lhayul Tours & Travels - Luxury Himalayan Brand Styling
   ========================================================================== */

:root {
  --lhayul-navy: #0f2537;
  --lhayul-navy-dark: #0a1824;
  --lhayul-gold: #c89b3c;
  --lhayul-gold-light: #e5c07b;
  --lhayul-gold-dark: #a37b27;
  --lhayul-pine: #1e453e;
  --lhayul-cream: #faf8f5;
  --lhayul-charcoal: #1a202c;
  --lhayul-muted: #64748b;
}

/* Brand Logo Styling */
.logo-lhayul-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
}

.logo-lhayul-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(200, 155, 60, 0.28);
  border: 2px solid #c89b3c;
  transition: transform 0.3s ease;
}

.logo-lhayul-wrap:hover .logo-lhayul-badge {
  transform: rotate(5deg) scale(1.05);
}

.logo-lhayul-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.05em;
  color: #0f2537;
  line-height: 1.1;
  display: block;
}

.logo-lhayul-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c89b3c;
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

/* Floating WhatsApp Quick Action Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulseFloat 2.5s infinite;
}

.whatsapp-float-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

.whatsapp-float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@keyframes pulseFloat {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* SDF Calculator Card */
.sdf-calculator-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 16px 45px rgba(15, 37, 55, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.25);
  position: relative;
  overflow: hidden;
}

.sdf-calculator-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f2537, #c89b3c, #1e453e);
}

.sdf-result-box {
  background: linear-gradient(135deg, #0f2537, #1a365d);
  color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 37, 55, 0.25);
}

.sdf-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(200, 155, 60, 0.15);
  color: #c89b3c;
}

/* Tour badges & tags */
.tour-badge-himalaya {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 37, 55, 0.9);
  backdrop-filter: blur(8px);
  color: #f7d287;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(200, 155, 60, 0.4);
  z-index: 3;
}

.tour-tag-sdf {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #bbf7d0;
}

/* Custom Inquiry Modal */
.lhayul-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 24, 36, 0.75);
  backdrop-filter: blur(6px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lhayul-modal.active {
  display: flex;
}

.lhayul-modal-box {
  background: #ffffff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  animation: modalPop 0.3s ease;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.lhayul-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border: none;
  color: #475569;
  transition: all 0.2s;
}

.lhayul-modal-close:hover {
  background: #0f2537;
  color: #ffffff;
}

.form-control-lhayul {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s;
  background: #ffffff;
}

.form-control-lhayul:focus {
  border-color: #c89b3c;
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
}

/* Interactive Calculator Form Elements */
.calc-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.calc-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  transition: background 0.2s;
}

.calc-btn-whatsapp:hover {
  background: #1eb956;
}

@media (max-width: 768px) {
  .whatsapp-float-btn span {
    display: none;
  }
  .whatsapp-float-btn {
    padding: 14px;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
  }
  .logo-lhayul-title {
    font-size: 18px;
  }
}

/* ==========================================================================
   Home 3 Split Hero Section (Vitour Home 3)
   ========================================================================== */
.slider-home3 {
  display: flex !important;
  align-items: stretch;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding-left: max(5%, calc((100% - 1320px) / 2 + 15px)) !important;
  min-height: 620px;
}

.slider-home3 .slider-home3-content {
  flex: 1 1 54%;
  max-width: 58%;
  padding-top: 100px !important;
  padding-bottom: 140px !important;
  padding-right: 40px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.slider-home3 .slider-home3-content .title-slide {
  font-size: 64px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #081E2A !important;
  text-transform: none !important;
  margin-top: 12px !important;
  margin-bottom: 24px !important;
}

.slider-home3 .slider-home3-content .des {
  max-width: 540px !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #64748B !important;
  margin-bottom: 35px !important;
}

.slider-home3 .slider-home3-image {
  flex: 1 1 48%;
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.slider-home3 .slider-home3-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 1199px) {
  .slider-home3 .slider-home3-content .title-slide {
    font-size: 52px !important;
  }
}

@media (max-width: 991px) {
  .slider-home3 {
    flex-direction: column !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    min-height: auto;
  }
  .slider-home3 .slider-home3-content {
    max-width: 100% !important;
    padding-top: 50px !important;
    padding-bottom: 30px !important;
    padding-right: 0 !important;
  }
  .slider-home3 .slider-home3-content .title-slide {
    font-size: 42px !important;
  }
  .slider-home3 .slider-home3-image {
    position: relative;
    width: 100%;
    min-height: 380px;
    border-radius: 16px;
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   Preloader Safety Guarantee (Never hangs)
   ========================================================================== */
@keyframes autoDismissPreload {
  0%, 70% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.preload,
.preload-container {
  animation: autoDismissPreload 0.8s ease 0.3s forwards !important;
}

/* ==========================================================================
   Widget Activities Custom Polish & Mobile Optimization
   ========================================================================== */
.tf-widget-activities {
  background: #ffffff;
}

/* Activities Tab Content Card - Logo-Based Luxury Navy & Gold Theme */
.tf-widget-activities .tabs-activities-content {
  background: linear-gradient(135deg, #0f2537 0%, #153349 55%, #1b4260 100%) !important;
  border: 1px solid rgba(200, 155, 60, 0.35) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(15, 37, 55, 0.22) !important;
}

.tf-widget-activities .tabs-activities-content .sub-title {
  color: var(--lhayul-gold, #c89b3c) !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.tf-widget-activities .tabs-activities-content .title-activitis {
  color: #ffffff !important;
  font-weight: 800;
}

.tf-widget-activities .tabs-activities-content .icon-list-wrap .icon {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.tf-widget-activities .tabs-activities-content .icon-list-wrap .icon-lists {
  color: #f1f5f9 !important;
}

.tf-widget-activities .tabs-activities-content .icon-activitis {
  background: rgba(200, 155, 60, 0.18) !important;
  border: 2px solid var(--lhayul-gold, #c89b3c) !important;
  color: var(--lhayul-gold, #c89b3c) !important;
  transition: all 0.3s ease;
}

.tf-widget-activities .tabs-activities-content .icon-activitis:hover {
  background: var(--lhayul-gold, #c89b3c) !important;
  color: var(--lhayul-navy, #0f2537) !important;
  transform: rotate(45deg) scale(1.05);
}

.tf-widget-activities .tabs-activities-content .get-start {
  color: #ffffff !important;
  font-weight: 700;
  transition: color 0.2s ease;
}

.tf-widget-activities .tabs-activities-content .get-start:hover {
  color: var(--lhayul-gold, #c89b3c) !important;
}

/* Activities Tab Nav Buttons */
.nav-tabs-activities {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-bottom: none !important;
  padding: 0 !important;
  margin-bottom: 35px !important;
}

.nav-tabs-activities .nav-item {
  flex: 0 0 auto;
}

.nav-tabs-activities .nav-item .nav-link {
  background-color: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  color: var(--lhayul-navy, #0f2537) !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-tabs-activities .nav-item .nav-link .icon {
  color: var(--lhayul-gold, #c89b3c) !important;
  transition: color 0.3s ease;
}

.nav-tabs-activities .nav-item .nav-link:hover,
.nav-tabs-activities .nav-item .nav-link.active {
  background: linear-gradient(135deg, #0f2537 0%, #1a3c56 100%) !important;
  border-color: #0f2537 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(15, 37, 55, 0.25) !important;
}

.nav-tabs-activities .nav-item .nav-link:hover .icon,
.nav-tabs-activities .nav-item .nav-link.active .icon {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.nav-tabs-activities .nav-item .nav-link:hover::before,
.nav-tabs-activities .nav-item .nav-link.active::before {
  border-top-color: #0f2537 !important;
}

.tf-widget-activities .tabs-activities-content .activities-image {
  flex-shrink: 0;
  display: block;
}

.tf-widget-activities .tabs-activities-content .activities-image img {
  width: 370px;
  height: 100%;
  min-height: 420px;
  max-height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.tf-widget-activities .tabs-activities-content .activities-image:hover img {
  transform: scale(1.03);
}

.tf-widget-activities .clip-text,
.clip-text {
  font-size: 105px;
  font-weight: 800;
  line-height: 89px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: -10px;
  margin-bottom: -5px;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  background-image: url('../../assets/images/page/clip-text.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  user-select: none;
  display: block;
}

/* Activities Section on Mobile & Tablet (<= 991px) */
@media (max-width: 991px) {
  /* Hide decorative dotted masks that cut through tabs and overflow on mobile */
  .tf-widget-activities .mask-top,
  .tf-widget-activities .mask-bottom {
    display: none !important;
  }

  /* Responsive Title */
  .tf-widget-activities .clip-text {
    font-size: clamp(34px, 9.5vw, 50px) !important;
    line-height: 1.15 !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    letter-spacing: 2px !important;
  }
  .tf-widget-activities .mb-60 {
    margin-bottom: 18px !important;
  }

  /* Horizontal Scrollable Tabs Container */
  .nav-tabs-activities {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 6px 16px 20px 16px !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
    margin-bottom: 20px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .nav-tabs-activities::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* Override any template width: 100% or vertical column layout */
  .nav-tabs-activities .nav-item {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
  }

  /* Individual Tab Button Card */
  .nav-tabs-activities .nav-item .nav-link {
    flex: 0 0 144px !important;
    width: 144px !important;
    min-width: 144px !important;
    max-width: 144px !important;
    min-height: 114px !important;
    padding: 16px 10px 14px 10px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #FFFFFF !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 14px rgba(15, 37, 55, 0.06) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    -webkit-tap-highlight-color: transparent;
  }

  /* Icon inside Tab */
  .nav-tabs-activities .nav-item .nav-link .icon {
    height: 38px !important;
    width: 38px !important;
    min-height: 38px !important;
    margin: 0 auto 8px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--lhayul-gold, #c89b3c) !important;
    transition: transform 0.25s ease, color 0.25s ease !important;
  }

  .nav-tabs-activities .nav-item .nav-link .icon i {
    font-size: 32px !important;
    line-height: 1 !important;
  }

  .nav-tabs-activities .nav-item .nav-link .icon svg {
    width: 36px !important;
    height: 34px !important;
  }

  /* Text inside Tab */
  .nav-tabs-activities .nav-item .nav-link span:not(.icon) {
    font-size: 12.5px !important;
    line-height: 16px !important;
    font-weight: 600 !important;
    color: #0F2537 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    word-break: break-word !important;
    transition: color 0.25s ease !important;
  }

  /* Active & Hover States */
  .nav-tabs-activities .nav-item .nav-link.active,
  .nav-tabs-activities .nav-item .nav-link:hover {
    background: linear-gradient(135deg, #0f2537 0%, #1a3c56 100%) !important;
    border-color: var(--lhayul-gold, #c89b3c) !important;
    box-shadow: 0 8px 22px rgba(15, 37, 55, 0.22) !important;
    transform: translateY(-2px);
  }

  .nav-tabs-activities .nav-item .nav-link.active span:not(.icon),
  .nav-tabs-activities .nav-item .nav-link:hover span:not(.icon) {
    color: #FFFFFF !important;
  }

  .nav-tabs-activities .nav-item .nav-link.active .icon,
  .nav-tabs-activities .nav-item .nav-link:hover .icon {
    color: var(--lhayul-gold, #c89b3c) !important;
    transform: scale(1.08);
  }

  /* Remove conflicting template triangle arrow which causes scroll clipping on mobile */
  .nav-tabs-activities .nav-item .nav-link:hover::before,
  .nav-tabs-activities .nav-item .nav-link.active::before {
    display: none !important;
    content: none !important;
  }

  /* Tab Content Box on Mobile */
  .tf-widget-activities .tabs-activities-content {
    flex-direction: column !important;
    padding: 16px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 16px !important;
  }

  .tf-widget-activities .tabs-activities-content .activities-image {
    width: 100% !important;
    margin: 0 !important;
  }

  .tf-widget-activities .tabs-activities-content .activities-image img {
    width: 100% !important;
    height: 220px !important;
    min-height: 200px !important;
    max-height: 240px !important;
    object-fit: cover !important;
    margin-left: 0 !important;
    border-radius: 12px !important;
  }

  .tf-widget-activities .tabs-activities-content .activities-content {
    padding: 22px 10px 10px 10px !important;
  }

  .tf-widget-activities .tabs-activities-content .activities-content .title-activitis {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 20px !important;
  }

  .tf-widget-activities .tabs-activities-content .activities-content .sub-title {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }

  .tf-widget-activities .tabs-activities-content .activities-content .mask-tab {
    display: none !important;
  }
}

.nav-tabs-activities .nav-item .nav-link:focus,
.nav-tabs-activities .nav-item .nav-link:active {
  outline: none;
  box-shadow: none;
}

/* ==========================================================================
   Section Spacing & Visual Hierarchy Harmonization
   ========================================================================== */
/* Missing Spacing Utility Classes */
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-60 { padding-top: 60px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-90 { padding-top: 90px !important; }
.pt-100 { padding-top: 100px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-100 { padding-bottom: 100px !important; }
.pb-120 { padding-bottom: 120px !important; }

/* Tour Select Section - balanced breathing room beneath the floating search bar */
.tour-select {
  padding-top: 80px !important;
  padding-bottom: 45px !important;
  position: relative;
  background-color: #ffffff;
}

.tour-select .mb-35 {
  margin-bottom: 35px !important;
}

.tour-select .sub-title-heading {
  margin-bottom: 12px;
  display: block;
}

@media (max-width: 991px) {
  .tour-select {
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }
}

@media (max-width: 767px) {
  .tour-select {
    padding-top: 45px !important;
    padding-bottom: 30px !important;
  }
  .tour-select .mb-35 {
    margin-bottom: 22px !important;
  }
}

/* About Us Section Spacing - tightened to eliminate awkward gaps */
.about-us {
  padding-top: 40px !important;
  padding-bottom: 30px !important;
}

@media (max-width: 991px) {
  .about-us {
    padding-top: 30px !important;
    padding-bottom: 25px !important;
  }
}

/* About Us Feature Boxes (Government Certified & Tailored Private Stays) - Align Icon with Heading */
.icon-box-style3 {
  margin-bottom: 22px;
}

.icon-box-style3 .icon-box-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 10px !important;
}

.icon-box-style3 .icon {
  height: auto !important;
  margin-bottom: 0 !important;
  margin-right: 0 !important;
  color: var(--lhayul-gold, #c89b3c) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 36px !important;
}

.icon-box-style3 .icon i {
  font-size: 30px !important;
  line-height: 1 !important;
  color: var(--lhayul-gold, #c89b3c) !important;
  display: block !important;
}

.icon-box-style3 .title {
  margin-bottom: 0 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  color: var(--lhayul-navy, #0f2537) !important;
}

.icon-box-style3 .title a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.icon-box-style3 .title a:hover {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.icon-box-style3 .des {
  font-size: 14.5px !important;
  line-height: 24px !important;
  color: #555555 !important;
  margin: 0 !important;
}

/* Tour Packages Section Spacing - crisp, compact clearance */
.tour-package {
  padding-top: 40px !important;
  padding-bottom: 28px !important;
}

@media (max-width: 991px) {
  .tour-package {
    padding-top: 30px !important;
    padding-bottom: 20px !important;
  }
}

/* Destination Section Spacing - eliminate excessive gap after Tour Packages */
.widget-destination1 {
  padding-top: 30px !important;
  padding-bottom: 40px !important;
  background-color: #ffffff;
}

.widget-destination1 .mb-50 {
  margin-bottom: 28px !important;
}

@media (max-width: 991px) {
  .widget-destination1 {
    padding-top: 25px !important;
    padding-bottom: 30px !important;
  }
  .widget-destination1 .mb-50 {
    margin-bottom: 20px !important;
  }
}

/* Tighten pd-main globally across homepage sections to eliminate desert spacing */
.tf-widget-activities.pd-main,
.widget-feature4.pd-main,
.widget-faq.pd-main {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

@media (max-width: 991px) {
  .tf-widget-activities.pd-main,
  .widget-feature4.pd-main,
  .widget-faq.pd-main {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

.tf-widget-activities .mb-60 {
  margin-bottom: 25px !important;
}

/* Hide decorative template masks that cause ghost overlays and intercept clicks */
.tf-widget-activities .mask-top,
.tf-widget-activities .mask-bottom,
.tf-widget-activities .mask-tab {
  display: none !important;
  pointer-events: none !important;
}

/* Ensure sticky elements (sidebars in single-destination and tour-single) stick properly */
#wrapper,
#pagee {
  overflow: visible !important;
}



/* ==========================================================================
   Indian Travelers Luxury Trust Strip & Vitour Tour Listing Refinements
   ========================================================================== */
.indian-trust-strip {
  background: #ffffff;
  border: 1px solid rgba(200, 155, 60, 0.28);
  border-left: 4px solid var(--lhayul-gold, #c89b3c);
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(15, 37, 55, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.indian-trust-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.indian-trust-main .flag-icon {
  font-size: 32px;
  line-height: 1;
}

.trust-badge-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--lhayul-gold, #c89b3c);
  margin-bottom: 2px;
}

.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lhayul-navy, #0f2537);
  margin: 0;
  line-height: 1.35;
}

.indian-trust-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.indian-trust-pills .trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1e3a5f;
  background: #f4f7fb;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.indian-trust-pills .trust-pill i {
  color: var(--lhayul-gold, #c89b3c);
  font-size: 13px;
}

.indian-trust-pills .trust-pill:hover {
  background: #edf2f9;
  border-color: rgba(200, 155, 60, 0.4);
}

@media (max-width: 767px) {
  .indian-trust-strip {
    padding: 14px 16px;
  }
  .trust-title {
    font-size: 13.5px;
  }
}

/* Tour Listing Grid and Card Polish */
.tour-listing.box-sd {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 37, 55, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-listing.box-sd:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(15, 37, 55, 0.12);
}

.tour-listing .tour-listing-image {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  position: relative;
}

.tour-listing .tour-listing-image img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-listing .tour-listing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px 20px 24px;
  border-radius: 14px;
  background-color: #ffffff;
  margin-top: -23px;
  position: relative;
  z-index: 2;
}

.tour-listing .tour-listing-content .tag-listing {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  position: absolute;
  top: -12px;
  right: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.tour-listing .tour-listing-content .map {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.tour-listing .tour-listing-content .map i {
  color: var(--lhayul-gold, #c89b3c);
  font-size: 12px;
}

.tour-listing .tour-listing-content .title-tour-list {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  min-height: 46px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
  margin-bottom: 8px;
}

.tour-listing .tour-listing-content .title-tour-list a {
  color: var(--lhayul-navy, #0f2537);
  transition: color 0.2s ease;
}

.tour-listing .tour-listing-content .title-tour-list a:hover {
  color: var(--lhayul-gold, #c89b3c);
}

.tour-listing .tour-listing-content .review i {
  color: #f59e0b;
  font-size: 13px;
}

.tour-listing .tour-listing-content .review span {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
  margin-left: 5px;
}

.tour-listing .tour-listing-content .icon-box {
  padding-top: 14px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-listing .tour-listing-content .icon-box .icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

.tour-listing .tour-listing-content .icon-box .icons i {
  color: var(--lhayul-gold, #c89b3c);
  font-size: 14px;
}

.tour-listing .tour-listing-content .price-box p {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

.tour-listing .tour-listing-content .price-box .price-sale {
  font-size: 19px;
  font-weight: 800;
  color: var(--lhayul-navy, #0f2537);
  display: block;
}

.tour-listing .tour-listing-content .price-box .price-unit {
  font-size: 11px;
  font-weight: 400;
  color: #64748b;
}

.tour-listing .tour-listing-content .btn-main {
  padding: 8px 16px;
  border-radius: 8px;
  gap: 6px;
}

.tour-listing .tour-listing-content .btn-main .btn-main-text {
  font-size: 12.5px;
  font-weight: 700;
}

/* Full-Width Explore Action for Tour Cards (Price-Free Luxury Presentation) */
.tour-listing .tour-listing-action {
  width: 100%;
  margin-top: 4px;
}

.tour-listing .tour-listing-action .explore-btn-full {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 13px 20px !important;
  border-radius: 10px !important;
  background: var(--lhayul-gold, #c89b3c) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(200, 155, 60, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

.tour-listing .tour-listing-action .explore-btn-full .btn-main-text {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  transform: none !important;
  margin: 0 !important;
  color: #ffffff !important;
}

.tour-listing .tour-listing-action .explore-btn-full .iconer {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 8px !important;
  transform: none !important;
  opacity: 1 !important;
  color: #ffffff !important;
  transition: transform 0.3s ease !important;
}

.tour-listing .tour-listing-action .explore-btn-full:hover {
  background: var(--lhayul-navy, #0f2537) !important;
  box-shadow: 0 8px 22px rgba(15, 37, 55, 0.28) !important;
  transform: translateY(-2px) !important;
}

.tour-listing .tour-listing-action .explore-btn-full:hover .iconer {
  transform: translateX(4px) !important;
}

.tour-listing .feature.bg-pine {
  background-color: #166534 !important;
}

.tour-listing .feature.bg-purple {
  background-color: #7e22ce !important;
}

.tour-listing .feature.bg-blue {
  background-color: #0284c7 !important;
}

/* ==========================================================================
   LOGO-BASED THEME COLOR SYSTEM (ROYAL BHUTAN GOLD & DEEP NAVY)
   ========================================================================== */

/* 1. Header & Navigation Branding */
.header-top .header-top-wrap .header-top-right ul li i,
.header-top .header-top-wrap .header-top-left .booking i {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.header-top .header-top-wrap .header-top-left .booking {
  color: var(--lhayul-navy, #0f2537) !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

.header-top .header-top-wrap .header-top-left .booking:hover {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.main-header .main-menu .navigation > li.current > a {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.main-header .main-menu .navigation > li > a:hover {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.main-header .main-menu .navigation > li > ul > li > a:hover,
.main-header .main-menu .navigation > li > ul > li.current > a {
  color: var(--lhayul-gold, #c89b3c) !important;
  background-color: rgba(200, 155, 60, 0.08);
}

.mobile-menu .navigation li.current > a {
  color: var(--lhayul-gold, #c89b3c) !important;
}

/* 2. Global Primary Buttons (Royal Gold to Deep Navy Hover) */
.btn-main,
.btn-main-small,
.sc-button {
  background: linear-gradient(135deg, #c89b3c 0%, #d4af37 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(200, 155, 60, 0.28);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-main:hover,
.btn-main-small:hover,
.sc-button:hover {
  background: #0f2537 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(15, 37, 55, 0.35);
  transform: translateY(-2px);
}

.btn-search {
  background: linear-gradient(135deg, #c89b3c 0%, #d4af37 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(200, 155, 60, 0.3);
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: #0f2537 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 37, 55, 0.35);
}

/* 3. Tour Select By Type Cards */
.box-tour-select-item .icon {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.box-tour-select-item .content .tour {
  background-color: var(--lhayul-navy, #0f2537) !important;
  color: #f7e7c4 !important;
  border: 1px solid rgba(200, 155, 60, 0.3);
}

.box-tour-select-item:before {
  background: linear-gradient(135deg, #0f2537 0%, #1a3c56 100%) !important;
}

.box-tour-select-item:hover .icon {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.box-tour-select-item:hover .content .title {
  color: #ffffff !important;
}

.box-tour-select-item:hover .content .price {
  color: #e5c07b !important;
}

.box-tour-select-item:hover .content .tour {
  background-color: var(--lhayul-gold, #c89b3c) !important;
  color: #0f2537 !important;
  font-weight: 700;
}

/* 4. Ready To Travel & Adventure Banner (Gold Pulsing Call Button) */
.widget-banner-contact .widget-icon-video {
  background: linear-gradient(135deg, #c89b3c 0%, #e5c07b 100%) !important;
  box-shadow: 0 0 0 0 rgba(200, 155, 60, 0.7);
  animation: pulse_gold 2s infinite !important;
}

.widget-banner-contact .widget-icon-video i {
  color: #0f2537 !important;
  font-size: 26px;
}

.widget-banner-contact .widget-icon-video:hover {
  background: #0f2537 !important;
  transform: scale(1.08);
}

.widget-banner-contact .widget-icon-video:hover i {
  color: #c89b3c !important;
}

@keyframes pulse_gold {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 155, 60, 0.75);
  }
  70% {
    box-shadow: 0 0 0 28px rgba(200, 155, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 155, 60, 0);
  }
}

/* 5. FAQ Section Royal Gold Corner Accents */
.faq-list .icon {
  background-color: var(--lhayul-gold, #c89b3c) !important;
}

.faq-list .accordion-button:not(.collapsed) {
  color: var(--lhayul-navy, #0f2537) !important;
  border-left: 4px solid var(--lhayul-gold, #c89b3c);
}

/* 6. Destination Badges & Circuit Pills */
.destination-style .tour,
.tf-widget-destination .destination-imgae .tour {
  background-color: rgba(15, 37, 55, 0.88) !important;
  color: var(--lhayul-gold, #c89b3c) !important;
  border: 1px solid rgba(200, 155, 60, 0.5) !important;
  backdrop-filter: blur(4px);
}

/* 7. Typography, Reviews & Ornamental Accents */
.sub-title-heading,
.travel.font-yes,
.text-second,
.text-main {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.dot {
  background-color: var(--lhayul-gold, #c89b3c) !important;
}

.bg-2 {
  background-color: var(--lhayul-navy, #0f2537) !important;
  border: 1px solid var(--lhayul-gold, #c89b3c) !important;
  color: #ffffff !important;
}

.review i,
.start {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.pagination-list li.active a,
.pagination-list li a:hover {
  background-color: var(--lhayul-gold, #c89b3c) !important;
  border-color: var(--lhayul-gold, #c89b3c) !important;
  color: #ffffff !important;
}

/* 8. Footer Theme Alignment */
.footer .footer-main .footer-widget.newsletter form button {
  background: var(--lhayul-gold, #c89b3c) !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-widget.newsletter form button:hover {
  background: #0f2537 !important;
}

.footer .footer-main .footer-widget .social li a:hover {
  color: var(--lhayul-gold, #c89b3c) !important;
}

.footer .footer-main .footer-widget ul li a:hover {
  color: var(--lhayul-gold, #c89b3c) !important;
}

/* ==========================================================================
   Widget Feature 4 (Why Choose Lhayul) Luxury Showcase Refinements
   ========================================================================== */
.widget-feature4 {
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.widget-feature4 .mask-faeture4 {
  display: none !important;
}

.widget-feature4 .content {
  padding-right: 15px;
}

.widget-feature4 .feature-wrap-box {
  padding-right: 20px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px 36px !important;
}

.widget-feature4 .icon-box-style7 {
  transition: transform 0.3s ease;
}

.widget-feature4 .icon-box-style7:hover {
  transform: translateY(-3px);
}

.widget-feature4 .image-feature4 {
  margin: 0 !important;
  position: relative !important;
  display: block !important;
  padding: 10px 10px 10px 20px;
}

.widget-feature4 .feature-image-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 24px 55px rgba(15, 37, 55, 0.16), 0 4px 16px rgba(200, 155, 60, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.widget-feature4 .feature-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px rgba(15, 37, 55, 0.22), 0 6px 20px rgba(200, 155, 60, 0.18);
}

.widget-feature4 .feature-main-photo {
  width: 100% !important;
  height: 520px !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  display: block !important;
  border: 1.5px solid rgba(200, 155, 60, 0.25) !important;
}

.widget-feature4 .feature-float-badge {
  position: absolute;
  background: rgba(15, 37, 55, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 155, 60, 0.45);
  color: #ffffff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  z-index: 5;
  transition: transform 0.3s ease;
}

.widget-feature4 .feature-float-badge:hover {
  transform: translateY(-2px);
}

.widget-feature4 .float-badge-bottom {
  bottom: 24px;
  left: -20px;
}

.widget-feature4 .float-badge-top {
  top: 24px;
  right: -20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 18px;
}

.widget-feature4 .badge-icon-gold {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 155, 60, 0.25) 0%, rgba(200, 155, 60, 0.08) 100%);
  border: 1px solid rgba(200, 155, 60, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-feature4 .badge-tag {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #dfb758;
  font-weight: 600;
  line-height: 1.2;
}

.widget-feature4 .badge-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 2px;
}

.widget-feature4 .badge-stars {
  display: flex;
  gap: 4px;
  color: #c89b3c;
  font-size: 13px;
}

.widget-feature4 .badge-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .widget-feature4 .float-badge-bottom {
    left: 10px;
    bottom: 15px;
  }
  .widget-feature4 .float-badge-top {
    right: 10px;
    top: 15px;
  }
}

@media (max-width: 991px) {
  .widget-feature4 .image-feature4 {
    display: block !important;
    margin-top: 35px !important;
    padding: 0 !important;
  }
  .widget-feature4 .feature-main-photo {
    height: 400px !important;
  }
  .widget-feature4 .feature-wrap-box {
    padding-right: 0 !important;
    gap: 24px !important;
  }
}

@media (max-width: 575px) {
  .widget-feature4 .feature-main-photo {
    height: 300px !important;
  }
  .widget-feature4 .feature-wrap-box {
    grid-template-columns: 1fr !important;
  }
  .widget-feature4 .feature-float-badge {
    padding: 8px 12px;
    gap: 8px;
  }
  .widget-feature4 .badge-icon-gold {
    width: 32px;
    height: 32px;
  }
  .widget-feature4 .badge-title {
    font-size: 12px;
  }
}

/* ==========================================================================
   Compact & Proportional Testimonials Section (.testimonial-section-h4)
   Eliminates excessive vertical height and aligns visual cadence
   ========================================================================== */
.testimonial-section-h4 {
  position: relative;
  overflow: hidden;
}

.testimonial-section-h4 .content {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  padding-left: 80px !important;
  padding-right: 50px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: auto !important;
  background-size: contain !important;
}

@media (min-width: 1500px) {
  .testimonial-section-h4 .content {
    padding-left: 120px !important;
    padding-right: 70px !important;
  }
}

.testimonial-section-h4 .content .mb-30 {
  margin-bottom: 16px !important;
}

.testimonial-section-h4 .sub-title-heading {
  font-size: 24px !important;
  margin-bottom: 6px !important;
}

.testimonial-section-h4 .title-heading {
  margin-bottom: 0 !important;
  font-size: 34px !important;
  line-height: 44px !important;
}

.widget-testimonial-style5 .des {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 30px !important;
  color: #1e293b !important;
  margin-bottom: 22px !important;
  letter-spacing: -0.2px !important;
}

.widget-testimonial-style5 .image-avata {
  margin-right: 15px !important;
}

.widget-testimonial-style5 .image-avata img {
  width: 58px !important;
  height: 58px !important;
  border: 3px solid #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.widget-testimonial-style5 .start {
  margin-right: 2em !important;
}

.widget-testimonial-style5 .start i {
  color: #c89b3c !important;
  font-size: 15px !important;
}

/* Right column diamond gallery - Display all 3 thumbnail images simultaneously */
.testimonial-section-h4 .gallery-testimonial-h4 {
  margin-left: 0 !important;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  padding-left: 60px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 100% !important;
  position: relative !important;
  overflow: visible !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery {
  padding: 0 !important;
  overflow: visible !important;
  height: auto !important;
  width: 100% !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  height: auto !important;
  width: auto !important;
  transform: none !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper .swiper-slide {
  height: auto !important;
  width: auto !important;
  flex-shrink: 0 !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  margin-left: 20px !important;
  cursor: pointer !important;
  opacity: 0.55 !important;
  visibility: visible !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper .swiper-slide:hover {
  opacity: 0.88 !important;
  transform: scale(1.04) !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1 !important;
  transform: scale(1.06) !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper .swiper-slide .image {
  width: 70px !important;
  height: 70px !important;
  border-radius: 14px !important;
  transform: rotate(45deg) !important;
  border-bottom: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
  overflow: hidden !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .image {
  border-bottom: 4px solid #c89b3c !important;
  border-right: 4px solid #c89b3c !important;
  box-shadow: 0 6px 18px rgba(200, 155, 60, 0.45) !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper .swiper-slide img {
  all: unset !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: rotate(-45deg) scale(1.3) !important;
  display: block !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-pagination-fraction {
  position: absolute !important;
  padding: 7px 22px !important;
  bottom: 16px !important;
  left: 24px !important;
  border-radius: 6px !important;
  background-color: #ffffff !important;
  width: auto !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  z-index: 10 !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-pagination-fraction span {
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #000000 !important;
}

.testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-pagination-fraction span.swiper-pagination-total {
  color: #c89b3c !important;
}

@media (max-width: 1200px) {
  .testimonial-section-h4 .content {
    padding-left: 40px !important;
    padding-right: 30px !important;
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .testimonial-section-h4 .gallery-testimonial-h4 {
    padding-left: 30px !important;
  }
}

@media (max-width: 991px) {
  .testimonial-section-h4 {
    max-height: none !important;
    height: auto !important;
  }
  .testimonial-section-h4 .content {
    padding: 35px 20px !important;
  }
  .testimonial-section-h4 .title-heading {
    font-size: 26px !important;
    line-height: 34px !important;
  }
  .testimonial-section-h4 .gallery-testimonial-h4 {
    padding: 24px 20px 60px 20px !important;
    min-height: auto !important;
    align-items: center !important;
  }
  .testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 16px !important;
  }
  .testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-wrapper .swiper-slide {
    margin: 8px !important;
  }
  .testimonial-section-h4 .gallery-testimonial-h4 .mySwiperGalllery .swiper-pagination-fraction {
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .widget-testimonial-style5 .des {
    font-size: 16px !important;
    line-height: 26px !important;
    margin-bottom: 16px !important;
  }
}

/* ==========================================================================
   Placed (Static) Decorative Mask Under Activities Section
   Stops horizontal motion and fixes the image in place gracefully
   ========================================================================== */
.tf-widget-activities .mask-bottom {
  -webkit-animation: none !important;
  animation: none !important;
  transform: none !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 20px !important;
  opacity: 0.15 !important;
  pointer-events: none !important;
  max-width: 260px !important;
  height: auto !important;
  z-index: 1 !important;
}

/* ==========================================================================
   Luxury FAQ Showcase Hero Image (.widget-faq .image-faq)
   Replaces blank dummy placeholder with framed photorealistic photography
   ========================================================================== */
.widget-faq .image-faq {
  margin: 0 !important;
  position: relative !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 45px rgba(15, 37, 55, 0.12) !important;
  border: 1px solid rgba(200, 155, 60, 0.25) !important;
  background-color: #0f2537 !important;
}

.widget-faq .image-faq .faq-main-photo,
.widget-faq .image-faq img {
  width: 100% !important;
  height: auto !important;
  max-height: 540px !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.widget-faq .image-faq:hover .faq-main-photo,
.widget-faq .image-faq:hover img {
  transform: scale(1.025) !important;
}

.faq-float-badge {
  position: absolute !important;
  bottom: 24px !important;
  left: 24px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(200, 155, 60, 0.35) !important;
  border-radius: 14px !important;
  padding: 12px 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
  z-index: 3 !important;
}

.faq-float-badge .badge-icon-gold {
  width: 36px !important;
  height: 36px !important;
  background: #0f2537 !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  border: 1px solid #c89b3c !important;
}

.faq-float-badge .badge-texts {
  display: flex !important;
  flex-direction: column !important;
}

.faq-float-badge .badge-tag {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #c89b3c !important;
  line-height: 1.2 !important;
}

.faq-float-badge .badge-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0f2537 !important;
  line-height: 1.3 !important;
}

@media (max-width: 767px) {
  .faq-float-badge {
    bottom: 15px !important;
    left: 15px !important;
    padding: 8px 12px !important;
    gap: 8px !important;
  }
  .faq-float-badge .badge-title {
    font-size: 12px !important;
  }
}

/* ==========================================================================
   Shangri-La Contact Banner (.widget-banner-contact) & Actions
   ========================================================================== */
.widget-banner-contact {
  position: relative;
  overflow: hidden;
}

.widget-banner-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(6, 22, 33, 0.94) 0%, rgba(10, 31, 46, 0.82) 50%, rgba(15, 37, 55, 0.55) 100%) !important;
  z-index: 1;
}

.widget-banner-contact .content-banner-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.widget-banner-contact .title-heading {
  font-size: 42px;
  line-height: 52px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Call text for mobile only */
.call-text-mobile {
  display: none !important;
}

/* WhatsApp Luxury Pill in Banner */
.banner-whatsapp-btn {
  margin-left: 28px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 26px !important;
  color: #FFFFFF !important;
  padding: 16px 32px !important;
  border: 1.5px solid rgba(37, 211, 102, 0.55) !important;
  background: rgba(37, 211, 102, 0.12) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 66px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.banner-whatsapp-btn svg {
  transition: transform 0.3s ease !important;
  flex-shrink: 0 !important;
}

.banner-whatsapp-btn:hover {
  background: #25D366 !important;
  color: #FFFFFF !important;
  border-color: #25D366 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45) !important;
}

.banner-whatsapp-btn:hover svg {
  fill: #FFFFFF !important;
  transform: scale(1.1) !important;
}

.banner-whatsapp-btn:hover strong {
  color: #FFFFFF !important;
}

@media (max-width: 991px) {
  .banner-whatsapp-btn {
    margin-left: 20px !important;
    font-size: 16px !important;
    padding: 12px 24px !important;
  }
}

/* Mobile Responsive Optimization for Shangri-La Banner */
@media (max-width: 767px) {
  .widget-banner-contact {
    background-attachment: scroll !important;
    background-position: center top !important;
  }

  .widget-banner-contact::before {
    background: linear-gradient(180deg, rgba(6, 22, 33, 0.94) 0%, rgba(10, 31, 46, 0.96) 100%) !important;
  }

  .widget-banner-contact .content-banner-contact {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
    text-align: left !important;
  }

  .widget-banner-contact .sub-title-heading {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .widget-banner-contact .title-heading {
    font-size: 27px !important;
    line-height: 35px !important;
    margin-bottom: 20px !important;
  }

  .widget-banner-contact .flex-three {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .widget-banner-contact .flex-three .video-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .widget-banner-contact .widget-icon-video {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
  }

  .widget-banner-contact .widget-icon-video i {
    font-size: 22px !important;
  }

  .call-text-mobile {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 15px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
  }

  .call-text-mobile strong {
    color: var(--lhayul-gold, #c89b3c) !important;
    margin-left: 4px !important;
  }

  .banner-whatsapp-btn {
    margin-left: 0 !important;
    margin-top: 0 !important;
    font-size: 15px !important;
    padding: 13px 20px !important;
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .widget-banner-contact .mask-icon-banner,
  .widget-banner-contact .image-banner-contact {
    display: none !important;
  }
}

/* ==========================================================================
   Footer Spacing Calibration (Post Shangri-La CTA Bar Removal)
   ========================================================================== */
.footer-style1 .footer-main {
  padding-top: 75px !important;
  padding-bottom: 60px !important;
}

/* ==========================================================================
   Footer & Header Contact Info Typography & Phone/Email Visibility
   ========================================================================== */
.footer-contact-link,
.footer-style1 .footer-main .footer-logo .footer-info li,
.footer-style1 .footer-main .footer-logo .footer-info li p,
.footer-style1 .footer-main .footer-logo .footer-info li a,
.footer-style1 .footer-main .footer-logo .footer-info li p a,
.footer-style1 .footer-main .footer-logo .footer-info li span,
.footer-style1 .footer-main .footer-logo .footer-info li span a,
.footer-info li,
.footer-info li p,
.footer-info li a,
.footer-info li p a,
.footer-info li span,
.footer-info li span a,
.footer-style1 .footer-main .footer-info a[href^="tel:"],
.footer-style1 .footer-main .footer-info a[href^="mailto:"],
footer a[href^="tel:"],
footer a[href^="mailto:"],
.footer a[href^="tel:"],
.footer a[href^="mailto:"] {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
  transition: color 0.25s ease, -webkit-text-fill-color 0.25s ease;
}

.footer-contact-link:hover,
.footer-style1 .footer-main .footer-logo .footer-info li a:hover,
.footer-style1 .footer-main .footer-logo .footer-info li p a:hover,
.footer-info li a:hover,
.footer-info li p a:hover,
.footer-style1 .footer-main .footer-info a[href^="tel:"]:hover,
.footer-style1 .footer-main .footer-info a[href^="mailto:"]:hover,
footer a[href^="tel:"]:hover,
footer a[href^="mailto:"]:hover,
.footer a[href^="tel:"]:hover,
.footer a[href^="mailto:"]:hover {
  color: var(--lhayul-gold, #c89b3c) !important;
  -webkit-text-fill-color: var(--lhayul-gold, #c89b3c) !important;
}

/* Header Top Bar Contact Links Visibility (on light #EBEBEB top-bar) */
.header-top .header-top-wrap .header-top-right ul li,
.header-top .header-top-wrap .header-top-right ul li span,
.header-top .header-top-wrap .header-top-right ul li a,
.header-top .header-top-wrap .header-top-right ul li a:link,
.header-top .header-top-wrap .header-top-right ul li a:visited,
.header-top a[href^="tel:"],
.header-top a[href^="mailto:"] {
  color: #0F2537 !important;
  -webkit-text-fill-color: #0F2537 !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, -webkit-text-fill-color 0.2s ease;
}

.header-top .header-top-wrap .header-top-right ul li a:hover,
.header-top .header-top-wrap .header-top-right ul li span a:hover,
.header-top a[href^="tel:"]:hover,
.header-top a[href^="mailto:"]:hover {
  color: var(--lhayul-gold, #c89b3c) !important;
  -webkit-text-fill-color: var(--lhayul-gold, #c89b3c) !important;
}

/* ==========================================================================
   Tour Select Horizontal Carousel Slider (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 991px) {
  .tour-select .tf-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: visible !important;
  }

  .box-tour-select-wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 10px 18px 22px 18px !important;
    margin: 0 -15px !important;
    position: relative !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE / Edge */
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }

  .box-tour-select-wrap.grabbing {
    cursor: grabbing !important;
    scroll-behavior: auto !important;
  }

  .box-tour-select-wrap::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .box-tour-select-item {
    flex: 0 0 250px !important;
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: normal !important;
    background-color: #FFFFFF !important;
    border: 1.5px solid #EAEAEA !important;
    border-radius: 14px !important;
    padding: 28px 18px 34px 18px !important;
    box-shadow: 0 8px 24px rgba(15, 37, 55, 0.06) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
  }

  .box-tour-select-item:hover,
  .box-tour-select-item:active {
    border-color: var(--lhayul-gold, #c89b3c) !important;
    box-shadow: 0 12px 28px rgba(200, 155, 60, 0.18) !important;
    transform: translateY(-3px) !important;
  }
}

/* Tour Select Mobile Controls (Dots & Navigation) */
.tour-select-slider-controls {
  display: none;
}

@media (max-width: 991px) {
  .tour-select-slider-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 6px;
  }

  .tour-select-nav-row {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #FFFFFF;
    padding: 7px 16px;
    border-radius: 40px;
    box-shadow: 0 4px 18px rgba(15, 37, 55, 0.08);
    border: 1px solid rgba(200, 155, 60, 0.28);
  }

  .ts-nav-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #FAF8F5;
    border: 1.5px solid rgba(200, 155, 60, 0.35);
    color: #0F2537;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
  }

  .ts-nav-btn svg,
  .ts-nav-btn polyline {
    display: block;
    stroke: #0F2537;
    transition: stroke 0.25s ease, transform 0.25s ease;
    pointer-events: none !important;
  }

  .ts-nav-btn:hover:not(.disabled),
  .ts-nav-btn:active:not(.disabled) {
    background: var(--lhayul-gold, #c89b3c) !important;
    border-color: var(--lhayul-gold, #c89b3c) !important;
    box-shadow: 0 4px 12px rgba(200, 155, 60, 0.35);
    transform: scale(1.06);
  }

  .ts-nav-btn:hover:not(.disabled) svg,
  .ts-nav-btn:active:not(.disabled) svg {
    stroke: #FFFFFF !important;
  }

  .ts-nav-btn.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
    background: #F3F4F6;
    border-color: #E5E7EB;
  }

  .ts-nav-btn.disabled svg {
    stroke: #9CA3AF;
  }

  .tour-select-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 2px;
  }

  .ts-dot {
    width: 9px;
    height: 9px;
    border-radius: 5px;
    background-color: #D1D5DB;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .ts-dot.active {
    width: 26px;
    background-color: var(--lhayul-gold, #c89b3c);
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(200, 155, 60, 0.4);
  }
}

/* ==========================================================================
   About Us Page Enhancements (.explore-bhutan-grid, .about-philosophy, .about-cta-banner)
   ========================================================================== */
.about-welcome-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 37, 55, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 20px;
  border-radius: 16px;
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.about-welcome-badge .badge-emblem {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.about-welcome-badge .badge-text .tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--lhayul-gold, #c89b3c);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-welcome-badge .badge-text .title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

/* Explore Bhutan Experience Cards Grid */
.explore-bhutan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.explore-bhutan-card {
  background: #FFFFFF;
  border: 1.5px solid #F1F5F9;
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.explore-bhutan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c89b3c 0%, #e5c07b 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.explore-bhutan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(15, 37, 55, 0.1);
  border-color: rgba(200, 155, 60, 0.4);
}

.explore-bhutan-card:hover::before {
  opacity: 1;
}

.explore-bhutan-card .card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(200, 155, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lhayul-gold, #c89b3c);
  font-size: 26px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.explore-bhutan-card:hover .card-icon-wrap {
  background: #0f2537;
  color: #FFFFFF;
  transform: scale(1.06);
}

.explore-bhutan-card .card-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f2537;
  margin-bottom: 10px;
  line-height: 1.35;
}

.explore-bhutan-card .card-des {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.explore-bhutan-card .card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lhayul-gold, #c89b3c);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap 0.25s ease;
}

.explore-bhutan-card:hover .card-action {
  gap: 12px;
  color: #0f2537;
}

/* About Philosophy Highlights */
.philosophy-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.philosophy-highlight-item .item-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(200, 155, 60, 0.12);
  color: var(--lhayul-gold, #c89b3c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.philosophy-highlight-item .item-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f2537;
  margin-bottom: 4px;
}

.philosophy-highlight-item .item-text p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Closing About CTA Banner */
.about-cta-banner {
  background: linear-gradient(135deg, #061621 0%, #0a1f2e 50%, #0f2537 100%);
  border-radius: 24px;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(200, 155, 60, 0.3);
  box-shadow: 0 20px 50px rgba(6, 22, 33, 0.35);
  margin-top: 40px;
}

.about-cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.12) 0%, rgba(200, 155, 60, 0) 70%);
  pointer-events: none;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .explore-bhutan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-cta-banner {
    padding: 45px 30px;
  }
}

@media (max-width: 767px) {
  .explore-bhutan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-welcome-badge {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 10px 14px;
  }
  .about-cta-banner {
    padding: 35px 20px;
    text-align: center;
  }
  .about-cta-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .about-cta-actions .btn-main,
  .about-cta-actions .calc-btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FACETED TOUR EXPLORER & AVAILABILITY CALENDAR (WP TRAVEL ENGINE ENHANCEMENT)
   ========================================================================== */

/* Search & Sort Toolbar */
.wpte-toolbar-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(15, 37, 55, 0.04);
}

.wp-travel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.wpte-trip-search-input {
  position: relative;
  flex: 1 1 240px;
  max-width: 380px;
}

.wpte-trip-search-input input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border: 1px solid #cbd5e1;
  border-radius: 30px;
  font-size: 13px;
  color: #0f2537;
  background: #f8fafc;
  transition: all 0.2s ease;
  outline: none;
}

.wpte-trip-search-input input:focus {
  border-color: #c89b3c;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
}

.wpte-trip-search-input::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
}

.wpte-toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wte-filter-foundposts {
  font-size: 13px;
  font-weight: 700;
  color: #0f2537;
  background: rgba(200, 155, 60, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.wte-filterby-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.wte-sort-select {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f2537;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 30px 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.wte-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: #0f2537;
  color: #f7d287;
  border: 1px solid #c89b3c;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 991px) {
  .wte-mobile-filter-btn {
    display: inline-flex;
  }
}

/* Faceted Filter Sidebar */
.advanced-search-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(15, 37, 55, 0.05);
  margin-bottom: 30px;
}

.advanced-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.advanced-search-header h2 {
  font-size: 18px;
  font-weight: 800;
  color: #0f2537;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.clear-search-criteria {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.clear-search-criteria:hover {
  color: #b91c1c;
}

.advanced-search-field {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.advanced-search-field:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f2537;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wte-search-terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wte-search-terms-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #334155;
}

.wte-search-terms-list label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 0;
  user-select: none;
}

.wte-search-terms-list input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  outline: none;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin: 0;
  flex-shrink: 0;
}

.wte-search-terms-list input[type="checkbox"]:checked {
  background: #0f2537;
  border-color: #c89b3c;
}

.wte-search-terms-list input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #f7d287;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wte-search-terms-list .count {
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}

.wte-filterbar-close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #64748b;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
}

/* Tour Card Styling (Category Trips Single) */
.category-trips-single {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(15, 37, 55, 0.05);
  transition: all 0.3s ease;
}

.category-trips-single:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 37, 55, 0.1);
  border-color: rgba(200, 155, 60, 0.4);
}

.category-trips-single-inner-wrap {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .category-trips-single-inner-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
  }
  .category-trip-aval-time {
    grid-column: 1 / -1;
  }
}

.category-trip-fig {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0f2537;
}

.category-trip-fig a {
  display: block;
  height: 100%;
}

.category-trip-fig img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.category-trips-single:hover .category-trip-fig img {
  transform: scale(1.06);
}

.category-feat-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.category-feat-ribbon-txt {
  background: #c89b3c;
  color: #0f2537;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.category-trip-duration-ribbon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 37, 55, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.category-trip-content-wrap {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 1200px) {
  .category-trip-content-wrap {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
  }
}

.category-trip-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.category-trip-rating {
  color: #c89b3c;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.category-trip-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 6px;
}

.category-trip-title a {
  color: #0f2537;
  text-decoration: none;
  transition: color 0.2s ease;
}

.category-trip-title a:hover {
  color: #c89b3c;
}

.category-trip-overview-line {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 14px;
  line-height: 1.5;
}

.category-trip-desti {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: #475569;
}

.category-trip-loc,
.category-trip-pax,
.category-trip-difficulty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-trip-loc i,
.category-trip-pax i,
.category-trip-difficulty i {
  color: #c89b3c;
  display: inline-flex;
}

.category-trip-budget-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

@media (min-width: 1200px) {
  .category-trip-budget-col {
    border-top: none;
    border-left: 1px solid #f1f5f9;
    padding-top: 0;
    padding-left: 18px;
    align-items: flex-end;
    text-align: right;
  }
}

.category-trip-price-box {
  display: flex;
  flex-direction: column;
}

.price-type-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  font-weight: 700;
}

.price-amount-val {
  font-size: 17px;
  font-weight: 800;
  color: #c89b3c;
}

.wpte-button-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.wpte-button-group .btn-main {
  text-align: center;
}

.wte-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25D366;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.wte-wa-btn:hover {
  background: #128C7E;
  color: #ffffff !important;
}

/* 12-Month Availability Calendar Bar */
.category-trip-aval-time {
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  padding: 10px 20px;
}

.category-trip-avl-tip-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.category-available-trip-text {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-available-months {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.wte-month-item {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  user-select: none;
}

.wte-month-active {
  background: #0f2537;
  color: #f7d287;
  border: 1px solid #c89b3c;
  font-weight: 700;
}

.wte-month-disabled {
  background: #e2e8f0;
  color: #94a3b8;
  opacity: 0.65;
  text-decoration: line-through;
}

@media (max-width: 991px) {
  .advanced-search-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #ffffff;
    border-radius: 0;
    overflow-y: auto;
    padding: 24px;
    box-shadow: none;
  }
  .advanced-search-wrapper.mobile-active {
    display: block !important;
  }
  .wte-filterbar-close-btn {
    display: block;
  }
}

/* Lhayul Official Social Icons Styling (High Visibility & Crisp SVGs) */
.social-ft {
  display: flex !important;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}
.social-ft li {
  margin: 0 !important;
}
.social-ft li a {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.social-ft li a.social-fb {
  background: rgba(24, 119, 242, 0.15) !important;
  color: #3b82f6 !important;
  border: 1px solid rgba(24, 119, 242, 0.35) !important;
}
.social-ft li a.social-fb:hover {
  background: #1877F2 !important;
  color: #ffffff !important;
  border-color: #1877F2 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.45);
}
.social-ft li a.social-ig {
  background: rgba(225, 48, 108, 0.15) !important;
  color: #ec4899 !important;
  border: 1px solid rgba(225, 48, 108, 0.35) !important;
}
.social-ft li a.social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.45);
}
.social-ft li a svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Header Topbar Social Icons */
.follow-social {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid #cbd5e1;
}
.follow-social span {
  font-size: 12px;
  color: #475569 !important;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.follow-social ul {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.follow-social ul li a {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.follow-social ul li a.social-fb {
  background: #ffffff !important;
  color: #1877F2 !important;
  border: 1.5px solid #1877F2 !important;
  box-shadow: 0 2px 5px rgba(24, 119, 242, 0.15);
}
.follow-social ul li a.social-fb:hover {
  background: #1877F2 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}
.follow-social ul li a.social-ig {
  background: #ffffff !important;
  color: #E1306C !important;
  border: 1.5px solid #E1306C !important;
  box-shadow: 0 2px 5px rgba(225, 48, 108, 0.15);
}
.follow-social ul li a.social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}
.follow-social ul li a svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
}













