
/* ===== HERO VISIBILITY ===== */
.th-hero-desktop { display: block; }
.th-hero-mobile { display: none; }

/* ===== HERO VISIBILITY ===== */
.th-hero-desktop { display: block; }
.th-hero-mobile { display: none; }

/* ===== DESKTOP HERO ===== */
.th-hero {
  position: relative;
}

.th-hero-slider {
  position: relative;
  height: 750px;
  overflow: hidden;
}

.th-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 15s infinite;
}

.slide-1 { animation-delay: 0s; }
.slide-2 { animation-delay: 5s; }
.slide-3 { animation-delay: 10s; }

@keyframes heroFade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* OVERLAY */
.th-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.2)
  );
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.th-hero-offer {
  background: #ff8c00;
  padding: 8px 16px;
  border-radius: 30px;
  width: fit-content;
  font-size: 14px;
  margin-bottom: 18px;
}

.th-hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 14px;
}

.th-hero-title span {
  color: #ffcc00;
}

.th-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 26px;
}

.th-hero-btn {
  background: #ff8c00;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: transform .2s ease, box-shadow .2s ease;
}

.th-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

.th-hero-trust {
  margin-top: 16px;
  font-size: 14px;
  opacity: .9;
}

/* ===== MOBILE HERO ===== */
/* =====================================================
   MOBILE HERO SLIDER – SWIPER READY
/* =====================================================
   MOBILE HERO SLIDER – FINAL VERSION
===================================================== */

@media (max-width: 768px) {

  /* Hide desktop hero */
  .th-hero-desktop {
    display: none;
  }

  /* Mobile hero wrapper */
  .th-hero-mobile {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* Swiper container */
  .th-hero-mobile-slider {
    position: relative;
    width: 100%;
   
  }

  /* Swiper slides */
  .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* Slide images */
  .swiper-slide img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* =====================================================
     OVERLAY CONTENT (FINAL FIX)
  ===================================================== */
 .th-hero-mobile-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* TOP POSITION */
  align-items: center;
  text-align: center;

  padding: 16px;
  padding-top: 18vh;             /* 👈 ADJUST THIS */
  box-sizing: border-box;

  color: #ffffff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.50),
    rgba(0, 0, 0, 0.20)
  );
}


  /* Offer badge */
  .th-mobile-offer {
    background: #ff8c00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  /* Main title (responsive) */
  .th-mobile-title {
    font-size: clamp(20px, 6vw, 26px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .th-mobile-title span {
    color: #ffcc00;
  }

  /* Subtitle (responsive) */
  .th-mobile-text {
    font-size: clamp(13px, 4vw, 15px);
    line-height: 1.5;
    margin-bottom: 14px;
    opacity: 0.95;
  }

  /* CTA button */
  .th-mobile-btn {
    background: #ff8c00;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .th-mobile-btn:active {
    transform: scale(0.96);
  }

  /* Trust text */
  .th-hero-trust {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.9;
  }

}
.th-hero-mobile-slider {
  height: 72svh;  /* small viewport height */
  
  
}

/* =====================================
   MOBILE HEADER – TRANSPARENT OVER HERO
===================================== */
@media (max-width: 768px) {

  /* Header background transparent */
  .th-header {
    background: transparent !important;
    box-shadow: none !important;

    position: absolute;   /* overlay on slider */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;         /* above slider */
  }

  /* Logo & menu icon color */
  .th-header a,
  .th-header i,
  .th-header svg {
    color: #ffffff !important;
    fill: #ffffff !important;
  }

}


    /* ================= COMMON BUTTON BEHAVIOR ================= */
.btn-wa-big,
.btn-call-big,
.quick-wa,
.quick-call {
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* ================= HERO BIG BUTTONS ================= */

/* WhatsApp big */
.btn-wa-big {
  background-color: #25D366;
  color: #ffffff;
}

.btn-wa-big:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* Call Now big */
.btn-call-big {
  background-color: #1e6fe8;
  color: #ffffff;
}

.btn-call-big:hover {
  background-color: #155dcc;
  transform: translateY(-2px);
}

/* ================= QUICK PACKAGE BUTTONS ================= */

/* WhatsApp small */
.quick-wa {
  background-color: #25D366;
  color: #ffffff;
}

.quick-wa:hover {
  background-color: #1ebe5d;
}

/* Call Now small */
.quick-call {
  background-color: #1e6fe8;
  color: #ffffff;
}

.quick-call:hover {
  background-color: #155dcc;
}

/* ================= TAP / CLICK FEEDBACK ================= */
.btn-wa-big:active,
.btn-call-big:active,
.quick-wa:active,
.quick-call:active {
  transform: translateY(0);
  opacity: 0.9;
}

.hx-side-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.hx-side-wa,
.hx-side-call {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hx-side-wa {
  background: #25D366;
}

.hx-side-call {
  background: #1e6fe8;
}

.hx-side-wa:hover,
.hx-side-call:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
/* ================= QUICK PACKAGES CARDS ================= */

.quick-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Card hover (desktop) */
.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
}

/* ================= QUICK ACTION BUTTONS ================= */

.quick-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.quick-wa,
.quick-call {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* WhatsApp button */
.quick-wa {
  background: #25D366;
  color: #ffffff;
}

.quick-wa:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 14px rgba(37,211,102,0.35);
}

/* Call button */
.quick-call {
  background: #1e6fe8;
  color: #ffffff;
}

.quick-call:hover {
  background: #155dcc;
  box-shadow: 0 6px 14px rgba(30,111,232,0.35);
}

/* Tap feedback (mobile) */
.quick-wa:active,
.quick-call:active {
  transform: scale(0.97);
  opacity: 0.9;
}
/* ===== TOP OFFERS (hx-to) ===== */
.hx-to-section {
  padding: 50px 20px;
  background: #ffffff;
  margin-top:0px;
}

.hx-to-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* SLIDER */
.hx-to-slider {
  overflow: hidden;
}

.hx-to-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s ease;
}

/* CARD */
.hx-to-card {
  position: relative;
  min-width: 260px;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.hx-to-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT OVERLAY */
.hx-to-text {
  position: absolute;
  bottom: 24px;
  left: 20px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.hx-to-text-small {
  font-size: 18px;
}

.hx-to-text-light {
  color: #111111;
}

.hx-to-text span,
.hx-to-text small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}

/* BADGE */
.hx-to-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ff7a00;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* DESKTOP */
@media (min-width: 769px) {
  .hx-to-card {
    min-width: 280px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hx-to-card {
    min-width: 100%;
    height: 340px;
  }
}

/* ===== DESTINATION CIRCLES ===== */
.hx-dc-section {
  padding: 40px 10px;
  background: #ffffff;
  margin-top"-80px
}

.hx-dc-wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ITEM */
.hx-dc-item {
  text-align: center;
}

/* CIRCLE */
.hx-dc-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.hx-dc-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY TEXT */
.hx-dc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.15));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
}

.hx-dc-overlay strong {
  font-size: 16px;
}

.hx-dc-overlay span {
  font-size: 13px;
  opacity: 0.95;
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
  .hx-dc-circle {
    width: 150px;
    height: 150px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hx-dc-wrap {
    gap: 20px;
  }

  .hx-dc-item {
    width: 45%;
    display: flex;
    justify-content: center;
  }

  /* Center last item */
  .hx-dc-item:last-child {
    width: 100%;
  }

  .hx-dc-circle {
    width: 150px;
    height: 150px;
  }
}
/* ===== TOP DESTINATIONS ===== */
.hx-td-section {
  padding: 40px 20px;
  background: #ffffff;
  margin-top:-80px;
}

.hx-td-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* MAIN GRID */
.hx-td-grid {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 20px;
  align-items: stretch;
}

/* ===== LEFT BIG IMAGE (FIXED HEIGHT) ===== */
.hx-td-item-big {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 380px;            /* 🔥 CONTROL HEIGHT HERE */
}

.hx-td-item-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RIGHT GRID ===== */
.hx-td-subgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;    /* 🔥 BALANCED CARD HEIGHT */
  gap: 14px;
}

/* CARD */
.hx-td-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.hx-td-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LABEL */
.hx-td-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* VIEW ALL */
.hx-td-viewall {
  align-self: center;
  font-size: 15px;
  font-weight: 600;
  color: #1e6fe8;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .hx-td-grid {
    grid-template-columns: 1fr;
  }

  /* Big image on top */
  .hx-td-item-big {
    height: 220px;
  }

  /* 2 images per row */
  .hx-td-subgrid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .hx-td-viewall {
    grid-column: span 2;
    text-align: center;
  }
}
/* ===== POPULAR PACKAGES ===== */
.hx-pp-section {
  padding: 40px 20px;
  background: #fff;
  margin-top:-80px;
}

.hx-pp-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
 
}

/* WRAPPER */
.hx-pp-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* SLIDER */
.hx-pp-slider {
  overflow: hidden;
  width: 100%;
}

.hx-pp-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s ease;
}

/* CARD */
.hx-pp-card {
  min-width: 260px;
  height: 160px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.hx-pp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hx-pp-card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background: rgba(0,0,0,0.35);
}

/* NAV BUTTONS */
.hx-pp-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}

.hx-pp-prev { margin-right: 10px; }
.hx-pp-next { margin-left: 10px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .hx-pp-card {
    min-width: 100%;
    height: 200px;
  }

  .hx-pp-prev,
  .hx-pp-next {
    display: none;
  }
}
/* ===== INDIA TOP TOUR PACKAGES ===== */
.hx-itp-section {
  padding: 40px 20px;
  background: #ffffff;
}

.hx-itp-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* WRAPPER */
.hx-itp-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* SLIDER */
.hx-itp-slider {
  overflow: hidden;
  width: 100%;
}

.hx-itp-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s ease;
}

/* CARD */
.hx-itp-card {
  min-width: 260px;
  height: 160px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.hx-itp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hx-itp-card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  background: rgba(0,0,0,0.35);
}

/* NAV BUTTONS */
.hx-itp-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}

.hx-itp-prev { margin-right: 10px; }
.hx-itp-next { margin-left: 10px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .hx-itp-card {
    min-width: 100%;
    height: 200px;
  }

  .hx-itp-prev,
  .hx-itp-next {
    display: none;
  }
}
/* =====================================================
   INDIA TOP TOUR PACKAGES – FINAL STABLE CSS
   ===================================================== */

#hxIndiaTopPackages {
  width: 100%;
  overflow: hidden;
  margin-top:-80px;
}

/* WRAPPER */
#hxIndiaTopPackages .hx-itp-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* SLIDER VIEWPORT */
#hxIndiaTopPackages .hx-itp-slider {
  width: 100%;
  overflow: hidden;
}

/* TRACK – FORCE HORIZONTAL FLOW */
#hxIndiaTopPackages .hx-itp-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* CARD – LOCK SIZE (CRITICAL) */
#hxIndiaTopPackages .hx-itp-card {
  width: 260px !important;
  min-width: 260px !important;
  max-width: 260px !important;

  height: 300px;
  flex: 0 0 auto !important;

  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* IMAGE */
#hxIndiaTopPackages .hx-itp-card img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover;
}

/* TITLE OVERLAY (TOP) */
#hxIndiaTopPackages .hx-itp-card span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
}

/* NAV BUTTONS */
#hxIndiaTopPackages .hx-itp-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 20px;
  z-index: 5;
  opacity: 0.9;
}

/* HOVER EFFECT (DESKTOP ONLY) */
@media (hover:hover) {
  #hxIndiaTopPackages .hx-itp-card img {
    transition: transform 0.4s ease;
  }
  #hxIndiaTopPackages .hx-itp-card:hover img {
    transform: scale(1.06);
  }
}

/* ===============================
   MOBILE FINAL FIX (IMPORTANT)
   =============================== */
@media (max-width: 768px) {

  #hxIndiaTopPackages .hx-itp-slider {
    width: 100%;
  }

  #hxIndiaTopPackages .hx-itp-track {
    width: 100%;
  }

  #hxIndiaTopPackages .hx-itp-card {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 260px;
    margin-right: 0;
  }

  #hxIndiaTopPackages .hx-itp-prev,
  #hxIndiaTopPackages .hx-itp-next {
    display: none;
  }
}
/* ===== POPULAR RELIGIOUS PACKAGES ===== */

.popular-packages-section {
  padding: 40px 20px;
  background: #fff;
}

.popular-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.popular-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

/* ARROWS */
.popular-arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.arrow-btn:hover {
  background: #1e6fe8;
  color: #fff;
}

/* SLIDER */
.popular-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* hide scrollbar */
.popular-slider::-webkit-scrollbar {
  display: none;
}
.popular-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* CARD */
.popular-card {
  min-width: 240px;
  max-width: 240px;
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.popular-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.popular-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY */
.popular-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.15)
  );
}

/* TITLE */
.popular-card span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
}

/* ===== MOBILE: FORCE ONLY 1 CARD VIEW ===== */
/* ===============================
   INDIA RELIGIOUS TOUR – MOBILE FIX
   =============================== */
@media (max-width: 768px) {

  /* target ONLY this section */
  .popular-packages-section .popular-slider {
    gap: 0;                         /* remove gap */
    scroll-snap-type: x mandatory;  /* snap slider */
  }

  .popular-packages-section .popular-card {
    min-width: 100%;                /* full width */
    max-width: 100%;
    height: 190px;                  /* stable height */
    scroll-snap-align: start;
  }

}



/* ===== INDIA TOURS SLIDER (UNIQUE) ===== */

.hx-itours-section {
  padding: 40px 20px;
  background: #fff;
}

.hx-itours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hx-itours-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

/* ARROWS */
.hx-itours-arrows {
  display: flex;
  gap: 10px;
}

.hx-itours-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2;
  font-size: 20px;
  cursor: pointer;
  transition: 0.25s ease;
}

.hx-itours-arrow:hover {
  background: #1e6fe8;
  color: #fff;
}

/* SLIDER */
.hx-itours-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
}

.hx-itours-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.hx-itours-card {
  min-width: 190px;
  max-width: 190px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.hx-itours-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hx-itours-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );
}

.hx-itours-card span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

/* ===== DESKTOP: SHOW ALL (NO SCROLL) ===== */
@media (min-width: 1024px) {
  .hx-itours-slider {
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .hx-itours-arrows {
    display: none;
  }
}
/* ===== DESKTOP: CENTER ALIGN CARDS ===== */
@media (min-width: 1024px) {

  .hx-itours-slider {
    justify-content: center;   /* center all cards */
  }

}

/* ===== MOBILE: SHOW EXACTLY 1 CARD ===== */
@media (max-width: 768px) {

  .hx-itours-slider {
    gap: 0;                         /* remove gap causing half card */
    scroll-snap-type: x mandatory;  /* snap to card */
  }

  .hx-itours-card {
    min-width: 100%;
    max-width: 100%;
    height: 190px;
    scroll-snap-align: start;
  }

}
/* =====================================
   TOP OFFERS SECTION (UNIQUE)
   ===================================== */

.hx-topoffers-section {
  padding: 40px 20px;
  background: #fff;
}

/* HEADER */
.hx-topoffers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hx-topoffers-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

/* ARROWS */
.hx-topoffers-arrows {
  display: flex;
  gap: 10px;
}

.hx-topoffers-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hx-topoffers-arrow:hover {
  background: #1e6fe8;
  color: #fff;
}

/* SLIDER */
.hx-topoffers-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.hx-topoffers-slider::-webkit-scrollbar {
  display: none;
}

/* =========================
   PACKAGE CARD
   ========================= */
.hx-topoffers-package-card {
  min-width: 80px;
  max-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.hx-topoffers-package-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* CONTENT */
.hx-topoffers-content {
  padding: 14px;
}

.hx-topoffers-tag {
  display: inline-block;
  background: #1e6fe8;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.hx-topoffers-content h3 {
  font-size: 17px;
  margin: 6px 0 4px;
}

.hx-topoffers-days {
  font-size: 13px;
  color: #555;
}

.hx-topoffers-price {
  font-size: 14px;
  margin: 8px 0;
  font-weight: 600;
}

.hx-topoffers-content ul {
  padding-left: 18px;
  margin: 0;
}

.hx-topoffers-content li {
  font-size: 13px;
  margin-bottom: 4px;
}

/* =========================
   PROMO IMAGE CARD
   ========================= */
.hx-topoffers-promo-card {
  min-width: 280px;
  max-width: 280px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
}

.hx-topoffers-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hx-topoffers-promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.2)
  );
}

.hx-topoffers-promo-card span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  z-index: 2;
}

/* =========================
   DESKTOP VIEW
   ========================= */
@media (min-width: 1024px) {
  .hx-topoffers-slider {
    justify-content: center;
    overflow-x: visible;
  }
}

/* =========================
   MOBILE – ONLY 1 CARD
   ========================= */
@media (max-width: 768px) {

  .hx-topoffers-slider {
    gap: 0;
    scroll-snap-type: x mandatory;
  }

  .hx-topoffers-package-card,
  .hx-topoffers-promo-card {
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }

  .hx-topoffers-arrow {
    display: none; /* recommended */
  }
}

/* =====================================
   ADVENTURE CONVERTED CARD LAYOUT
   ===================================== */

.hx-adv-convert-section {
  padding: 40px 20px;
  background: #fff;
  margin-top:-80px;
}

.hx-adv-convert-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* slider */
.hx-adv-convert-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.hx-adv-convert-slider::-webkit-scrollbar {
  display: none;
}

/* card */
.hx-adv-convert-card {
  min-width: 420px;
  max-width: 420px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

/* image */
.hx-adv-convert-img {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  overflow: hidden;
  margin-right: 16px;
}

.hx-adv-convert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* content */
.hx-adv-convert-content h3 {
  font-size: 18px;
  margin: 0 0 6px;
  color: #000;
}

.hx-adv-convert-content p {
  font-size: 14px;
  color: #555;
  margin: 0 0 6px;
}

.hx-adv-view {
  font-size: 14px;
  color: #1e6fe8;
  font-weight: 600;
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  .hx-adv-convert-slider {
    justify-content: center;
    overflow-x: visible;
  }
}

/* ===== MOBILE: ONE CARD ===== */
@media (max-width: 768px) {
  .hx-adv-convert-slider {
    gap: 0;
    scroll-snap-type: x mandatory;
  }

  .hx-adv-convert-card {
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }
}
/* ===== DESKTOP POLISH: REDUCE WIDTH & IMAGE SIZE ===== */
@media (min-width: 1024px) {

  .hx-adv-convert-card {
    min-width: 60px;
    max-width: 360px;
    padding: 12px;
  }

  .hx-adv-convert-img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin-right: 14px;
  }

  .hx-adv-convert-content h3 {
    font-size: 17px;
  }

  .hx-adv-convert-content p {
    font-size: 13px;
  }

}
/* ===== HERO SLIDER HEIGHT CONTROL ===== */
.th-hero,
.th-hero-slider {
  height: 520px;           /* desktop height */
  min-height: 520px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .th-hero,
  .th-hero-slider {
    height: 420px;
    min-height: 320px;
  }
}

/* ===== HERO OVERLAY BASE ===== */
.th-hero-mobile-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
 
}

/* ===== OFFER BADGE ===== */
.th-mobile-offer {
  background: #ff9800;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  animation: glowPulse 1.6s infinite alternate;
}

@keyframes glowPulse {
  from {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(255,152,0,0.6);
  }
  to {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255,152,0,1);
  }
}

/* ===== TITLE ===== */
.th-mobile-title {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.th-mobile-title span {
  color: #ffcc00;
}

/* ===== SUB TEXT ===== */
.th-mobile-text {
  font-size: 15px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.9s;
}

/* ===== CTA BUTTON ===== */
.th-mobile-btn {
  margin-top: 16px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  animation: pulseBtn 1.8s infinite;
}

/* ===== TRUST TEXT ===== */
.th-hero-trust {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.4s;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.th-hero-mobile-overlay.animate .th-mobile-title,
.th-hero-mobile-overlay.animate .th-mobile-text,
.th-hero-mobile-overlay.animate .th-hero-trust {
  animation-play-state: running;
}
/* ===== Top Offers Slider ===== */

.hx-to-section {
  width: 100%;
  padding: 20px 0;
}

.hx-to-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hx-to-slider {
  width: 100%;
  overflow: hidden;               /* 🔥 prevents blank space */
  position: relative;
}

.hx-to-track {
  display: flex;
  gap: 16px;                      /* spacing between cards */
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.hx-to-card {
  min-width: 240px;               /* MUST match image width */
  flex-shrink: 0;                 /* 🔥 prevents collapse */
  position: relative;
}

.hx-to-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Optional badge */
.hx-to-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff3b3b;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 2;
}
.th-logo-mobile { display: none; }

@media (max-width: 768px) {
  .th-logo-desktop { display: none; }
  .th-logo-mobile { display: block; }
}
/* ===== TESTIMONIAL MODULE ===== */
/* Center & tighten section */


.hex-tm-section {
  padding: 50px 20px 40px;
}

/* Better title spacing */
.hex-tm-title {
  margin-bottom: 24px;
}

/* Limit card width for premium look */
.hex-tm-slider {
  max-width: 780px;   /* 👈 reduced from 900 */
}

/* Card refinement */
.hex-tm-card {
  padding: 28px 30px;
}

/* Improve readability */
.hex-tm-text {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

/* User row alignment */
.hex-tm-user {
  margin-top: 18px;
}

.hex-tm-user strong {
  display: block;
  font-size: 15px;
}

.hex-tm-user span {
  font-size: 13px;
  color: #666;
}

/* Bring dots closer */
.hex-tm-dots {
  margin-top: 14px;
}

.hex-tm-section {
  padding: 60px 20px;
 background: linear-gradient(180deg, rgba(95, 158, 160, 0.18) 0%, #ffffff 65%);
}

.hex-tm-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.hex-tm-rating {
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Slider viewport */
.hex-tm-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden; /* ✅ critical */
}

/* Track */
.hex-tm-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* Slide */
.hex-tm-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

/* Text */
.hex-tm-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* User */
.hex-tm-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hex-tm-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Dots */
.hex-tm-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hex-tm-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cfcfcf;
  cursor: pointer;
}

.hex-tm-dots button.active {
  background: #0a58ca;
}

/* Section */
.hx-pp-section {
  padding: 40px 0;
}

.hx-pp-title {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Wrapper */
.hx-pp-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Slider */
.hx-pp-slider {
  overflow: hidden;
  width: 100%;
}

.hx-pp-track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}

/* Card */
.hx-pp-card {
  flex: 0 0 auto;
  width: 260px;
  border-radius: 20px;
  overflow: hidden;
}

/* Clickable area */
.hx-pp-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

/* Image */
.hx-pp-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

/* Text overlay */
.hx-pp-link span {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}

/* Navigation */
.hx-pp-nav {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 0 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .hx-pp-card {
    width: 220px;
  }
}

/* ===== Top Offers Slider ===== */

.hx-to-section {
  width: 100%;
  padding: 20px 0;
}

.hx-to-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hx-to-slider {
  width: 100%;
  overflow: hidden;               /* 🔥 prevents blank space */
  position: relative;
}

.hx-to-track {
  display: flex;
  gap: 16px;                      /* spacing between cards */
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.hx-to-card {
  min-width: 240px;               /* MUST match image width */
  flex-shrink: 0;                 /* 🔥 prevents collapse */
  position: relative;
}

.hx-to-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Optional badge */
.hx-to-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff3b3b;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 2;
}
.th-logo-mobile { display: none; }

@media (max-width: 768px) {
  .th-logo-desktop { display: none; }
  .th-logo-mobile { display: block; }
}
/* ===== SEO SECTION BASE ===== */
.hex-seo-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 70px 20px;
  border-top: 1px solid #eee;
}

.hex-seo-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.hex-seo-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
}

.hex-seo-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 900px;
  margin-bottom: 48px;
}

/* ===== GRID ===== */
.hex-seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* Column card feel */
.hex-seo-column {
  background: #ffffff;
  padding: 22px 22px 26px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.hex-seo-col-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

/* Links */
.hex-seo-list li {
  margin-bottom: 10px;
}

.hex-seo-list a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hex-seo-list a:hover {
  color: #0a58ca;
  text-decoration: underline;
}

/* ===== EXTRA DESTINATIONS ===== */
.hex-seo-extra {
  margin-top: 60px;
}

.hex-seo-extra-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Pills */
.hex-seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hex-seo-tags a {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: all 0.25s ease;
}

.hex-seo-tags a:hover {
  background: #0a58ca;
  color: #ffffff;
  border-color: #0a58ca;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hex-seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hex-seo-heading {
    font-size: 24px;
  }

  .hex-seo-grid {
    grid-template-columns: 1fr;
  }

  .hex-seo-column {
    padding: 20px;
  }
}
