   /* ================= 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;
}
/* ================= MOBILE HERO ================= */

/* ================= MOBILE HERO ================= */
/* ================= COMMON HEADER ================= */

header.th-header {
  position: sticky;          /* IMPORTANT: keeps layout flow */
  top: 0;
  z-index: 10000;
  background-color: #0A2A4A; /* solid background */
  opacity: 1;
}

/* ================= MOBILE HERO ================= */

.mobile-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 520px;
  max-height: 680px;
  bottom:150px;
  /* IMPORTANT: no hard margin-top */
  margin: 12px auto 0;

  border-radius: 18px;
  overflow: hidden;
  color: #fff;
}

/* ================= SLIDER BACKGROUND LAYERS ================= */

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 55% 30%;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out, transform 6s ease;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1.08); /* subtle zoom */
}

/* ================= OVERLAY ================= */

.mobile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 2;
}

/* ================= HERO CONTENT ================= */

.hero-content {
  position: relative;
  z-index: 3;

  height: 100%;
  padding: 20px;
  margin-top:50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

/* ================= TEXT ================= */

.hero-content h1 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 8px;
}

.cities {
  font-size: 14px;
  margin-bottom: 6px;
}

.tour-types {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 14px;
}

/* ================= BUTTONS ================= */

.btn-wa-big,
.btn-call-big {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 600;
  border-radius: 28px;
  text-decoration: none;
  color: #fff;
}

.btn-wa-big {
  background: #25D366;
  margin-bottom: 10px;
}

.btn-call-big {
  background: #007bff;
}

/* ================= TRUST LINE ================= */

.trust-line {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.9;
}

/* ================= ENTRY ANIMATION ================= */

.slide-up-on-load {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= DESKTOP ADJUSTMENTS ================= */

@media (min-width: 992px) {
.mobile-hero {
  height: 52vh;        /* reduced height */
  min-height: 420px;  /* safe minimum */
  max-height: 560px;  /* prevents tall screens */
}


  .hero-content h1 {
    font-size: 32px;
  }
}
.mobile-hero {
  margin-top: 8px;
}
.mobile-hero {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mobile-hero {
    width: 100vw;                 /* full screen width */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;             /* optional: cleaner mobile look */
  }
}
