/* ==========================================================================
   INFINITE TRAVELER — ORANGE & WHITE MODERN TRAVEL THEME
   Tailored for High Conversion & Immersive Experience
   ========================================================================== */

:root {
  --primary: #FF6B00;
  --primary-hover: #EA580C;
  --primary-light: #FFF7ED;
  --primary-gradient: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);

  --accent: #F97316;
  --accent-hover: #D97706;
  --accent-light: #FFFBEB;
  --accent-gold: #F59E0B;

  --dark: #18181B;
  --dark-light: #27272A;
  --slate: #52525B;
  --muted: #A1A1AA;
  --border: #F0EAE1;
  --bg-light: #FAF7F2;
  --bg-smoke: #F4EFEB;
  --white: #FFFFFF;

  --danger: #EF4444;
  --success: #10B981;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 14px rgba(249, 115, 22, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px rgba(249, 115, 22, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px rgba(255, 107, 0, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-main: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Not `hidden`: that makes body a scroll container and silently breaks
     every position:sticky on the page (the tour sidebar, most visibly).
     `clip` suppresses the same sideways overflow without doing that. */
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* Top Bar — Vibrant Orange Gradient with Sheen */
.header-top {
  background: linear-gradient(90deg, #7C2D12 0%, #9A3412 20%, #C2410C 55%, #EA580C 85%, #FF6B00 100%);
  color: #FFEDD5;
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.header-top .container {
  max-width: 1360px;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-top-inner::-webkit-scrollbar {
  display: none;
}

.header-contact-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.80rem;
  white-space: nowrap;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-contact-links a svg {
  color: #FFEDD5;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.header-contact-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-0.5px);
}

.header-contact-links a:hover svg {
  transform: scale(1.1);
}

.header-quick-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.top-callback-btn {
  background: #FFFFFF;
  color: #EA580C;
  font-size: 0.79rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.3;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-callback-btn:hover {
  background: #FFF7ED;
  color: #C2410C;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

.top-callback-btn svg {
  color: #EA580C;
}

/* Dynamic Glowing & Pulsing Promo Badges */
@keyframes promoGlowPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.4), 0 0 0 0 rgba(255, 107, 0, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.7), 0 0 14px rgba(255, 215, 0, 0.65);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.4), 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
}

@keyframes promoFestiveGlowPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.4), 0 0 0 0 rgba(230, 57, 70, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.75), 0 0 14px rgba(255, 75, 140, 0.65);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.4), 0 0 0 0 rgba(230, 57, 70, 0.4);
  }
}

@keyframes starSpin {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(20deg) scale(1.3);
  }
}

@keyframes festiveIconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.28);
  }
}

.badge-tag {
  background: linear-gradient(135deg, #FF9E00 0%, #FF6000 50%, #E63946 100%);
  color: #FFFFFF !important;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 3px 12px rgba(255, 107, 0, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
  animation: promoGlowPulse 2.8s ease-in-out infinite;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.badge-tag:hover {
  background: linear-gradient(135deg, #FF6000 0%, #E63946 50%, #C2410C 100%);
  transform: translateY(-3px) scale(1.08) !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 22px rgba(255, 96, 0, 0.65) !important;
}

.badge-tag svg {
  color: #FFFFFF;
  flex-shrink: 0;
  animation: starSpin 3s ease-in-out infinite;
}

.badge-tag.festive-badge {
  background: linear-gradient(135deg, #FF007F 0%, #E63946 45%, #FF7B00 100%);
  color: #FFFFFF !important;
  padding: 5px 16px;
  box-shadow: 0 3px 12px rgba(230, 57, 70, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  animation: promoFestiveGlowPulse 2.8s ease-in-out infinite 0.7s;
}

.badge-tag.festive-badge:hover {
  background: linear-gradient(135deg, #E63946 0%, #FF007F 50%, #9B5DE5 100%);
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 6px 22px rgba(230, 57, 70, 0.7) !important;
}

.badge-tag.festive-badge svg {
  animation: festiveIconPulse 2.6s ease-in-out infinite;
}

/* Promo Badge Size Variations */
.badge-tag.promo-size-sm,
.mob-promo-pill.promo-size-sm {
  padding: 3px 10px !important;
  font-size: 0.72rem !important;
  gap: 5px !important;
}

.badge-tag.promo-size-md,
.mob-promo-pill.promo-size-md {
  padding: 5px 14px !important;
  font-size: 0.80rem !important;
  gap: 6px !important;
}

.badge-tag.promo-size-lg,
.mob-promo-pill.promo-size-lg {
  padding: 7px 18px !important;
  font-size: 0.90rem !important;
  gap: 7px !important;
}

/* Promo Theme Color Variations */
.badge-tag.promo-theme-orange {
  background: linear-gradient(135deg, #FF9E00 0%, #FF6000 50%, #E63946 100%) !important;
  box-shadow: 0 3px 12px rgba(255, 107, 0, 0.45) !important;
}

.badge-tag.promo-theme-festive {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #EA580C 100%) !important;
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.45) !important;
}

.badge-tag.promo-theme-green {
  background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%) !important;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.45) !important;
}

.badge-tag.promo-theme-purple {
  background: linear-gradient(135deg, #A855F7 0%, #7C3AED 50%, #6D28D9 100%) !important;
  box-shadow: 0 3px 12px rgba(168, 85, 247, 0.45) !important;
}

.badge-tag.promo-theme-blue {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1D4ED8 100%) !important;
  box-shadow: 0 3px 12px rgba(59, 130, 246, 0.45) !important;
}

/* Main Nav — Modern Aesthetic Glassmorphism */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 24px -2px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12), 0 4px 14px rgba(255, 107, 0, 0.22);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.brand-logo:hover .logo-badge {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.22), 0 6px 20px rgba(255, 107, 0, 0.38);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  color: #0F172A;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-text span {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FF6B00;
}

/* ==========================================================================
   PROMINENT TOURS SECTION SEARCH BAR (GLOWING ORANGE OUTLINE)
   ========================================================================== */
.tours-hero-search-wrap {
  max-width: 680px;
  margin: 0 auto 36px;
  position: relative;
  width: 100%;
}

.tours-hero-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 2.5px solid #FF6B00;
  border-radius: 50px;
  padding: 6px 8px 6px 12px;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2), 0 10px 30px -4px rgba(255, 107, 0, 0.28);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  animation: orangeSearchGlow 3s ease-in-out infinite alternate;
}

@keyframes orangeSearchGlow {
  0% {
    box-shadow: 0 0 0 3.5px rgba(255, 107, 0, 0.18), 0 8px 24px -2px rgba(255, 107, 0, 0.22);
  }
  100% {
    box-shadow: 0 0 0 7px rgba(255, 107, 0, 0.3), 0 14px 38px -2px rgba(255, 107, 0, 0.42);
  }
}

.tours-hero-search-box:focus-within,
.tours-hero-search-box:hover {
  border-color: #FF6B00;
  box-shadow: 0 0 0 7px rgba(255, 107, 0, 0.35), 0 16px 42px -2px rgba(255, 107, 0, 0.48);
  transform: translateY(-2px);
}

.tours-search-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFF7ED;
  color: #FF6B00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.tours-section-search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.98rem;
  font-weight: 600;
  color: #0F172A;
  outline: none;
  font-family: inherit;
  padding: 8px 4px;
}

.tours-section-search-input::placeholder {
  color: #64748B;
  font-size: 0.92rem;
  font-weight: 500;
}

.tours-search-clear-btn {
  background: #F1F5F9;
  border: none;
  color: #64748B;
  font-size: 0.85rem;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.18s ease;
  margin-right: 2px;
}

.tours-search-clear-btn:hover {
  background: #FF6B00;
  color: #FFFFFF;
}

.tours-search-btn {
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
  color: #FFFFFF;
  border: none;
  font-size: 0.90rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tours-search-btn:hover {
  background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.5);
}

@media (max-width: 640px) {
  .tours-hero-search-wrap {
    margin: 0 auto 24px;
    padding: 0 4px;
  }
  .tours-section-search-input {
    font-size: 0.88rem;
  }
  .tours-section-search-input::placeholder {
    font-size: 0.82rem;
  }
  .tours-search-btn {
    padding: 8px 16px;
    font-size: 0.84rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E293B;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #FF6B00, #FF8C00);
  border-radius: 4px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #FF6B00;
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #FF6B00;
  font-weight: 700;
}

.nav-link svg {
  color: #94A3B8;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s;
}

.has-dropdown:hover > a svg,
.has-dropdown.open > a svg {
  transform: rotate(180deg);
  color: #FF6B00;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border-radius: 16px;
  box-shadow: 0 20px 48px -6px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(226, 232, 240, 0.9);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  z-index: 1100;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.16s ease;
}

.nav-dropdown a:hover {
  background: #FFF7ED;
  color: #FF6B00;
  padding-left: 20px;
  font-weight: 700;
  transform: translateX(3px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 138, 0, 0.3);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.82rem;
}

.mobile-header-promos,
.mobile-promo-strip,
.mobile-insta-btn {
  display: none;
}

.mobile-toggle {
  display: none;
  background: #F8FAFC;
  border: 1px solid var(--border);
  color: var(--dark);
  cursor: pointer;
  padding: 7px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--bg-smoke);
  border-color: var(--slate);
}

/* Mobile Offcanvas Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: min(88vw, 350px);
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.16);
  z-index: 2000;
  padding: 20px 18px 30px;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.mobile-close-btn {
  background: #F4EFEB;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-close-btn:hover {
  background: #E4DFDB;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #FAF7F2;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
}

.mobile-nav-group-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 4px;
  padding-left: 6px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-link:hover,
.mobile-link:active {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.mobile-link.highlight-orange {
  color: var(--primary);
  font-weight: 700;
  background: var(--primary-light);
}

.mobile-link.highlight-festive {
  color: #EA580C;
  font-weight: 700;
}

/* Mobile Accordion Dropdowns */
.mobile-nav-accordion {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2px;
}

.mobile-nav-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.mobile-nav-accordion-header:hover,
.mobile-nav-accordion.open .mobile-nav-accordion-header {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.mobile-accordion-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-accordion-arrow {
  transition: transform 0.25s ease;
  color: var(--slate);
  flex-shrink: 0;
}

.mobile-nav-accordion.open .mobile-accordion-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-nav-accordion-body {
  display: none;
  flex-direction: column;
  padding: 4px 0 6px 16px;
  gap: 2px;
}

.mobile-nav-accordion.open .mobile-nav-accordion-body {
  display: flex;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #475569;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-sub-link:hover,
.mobile-sub-link:active {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.mobile-link-icon {
  font-size: 1rem;
  line-height: 1;
}

.mobile-badge-pill {
  font-size: 0.65rem;
  font-weight: 800;
  background: #EF4444;
  color: #FFFFFF;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: auto;
  text-transform: uppercase;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 14px;
}

.mobile-drawer-contact-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 12px;
}

.drawer-contact-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.drawer-contact-header strong {
  font-size: 0.84rem;
  color: #0F172A;
}

.drawer-contact-header span {
  font-size: 0.72rem;
  color: #64748B;
}

.drawer-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.drawer-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #BBF7D0;
}

.drawer-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  background: #FFF7ED;
  color: var(--primary);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 107, 0, 0.25);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION & AD CAROUSEL
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 60px 20px 80px;
  overflow: hidden;
  background: #0A1814;
}

.hero-slides-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 6s ease-out;
  transform: scale(1.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Typography with crisp visibility */
.hero-byko-tag {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 12px rgba(0, 0, 0, 0.8);
  margin-bottom: 12px;
}

.hero-byko-title {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 6px 24px rgba(0, 0, 0, 0.85);
  margin-bottom: 14px;
  line-height: 1.12;
}

.hero-byko-subtitle {
  font-size: 1.18rem;
  font-weight: 500;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 16px rgba(0, 0, 0, 0.8);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.45;
}

.hero-byko-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 14px rgba(0, 0, 0, 0.8);
  margin-bottom: 14px;
}

.hero-byko-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 4px 18px rgba(0, 0, 0, 0.85);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* Orange & White Pill Button */
.hero-byko-cta-btn {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 9999px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #FF6B00 0%, #FF8800 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.45);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  text-decoration: none;
}

.hero-byko-cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #EA580C 0%, #FF6B00 100%);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.6);
}

/* Circular Navigation Arrow Buttons */
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-carousel-arrow:hover {
  background: #FFFFFF;
  color: #FF6B00;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 26px rgba(255, 107, 0, 0.35);
}

.hero-carousel-arrow.prev {
  left: 32px;
}

.hero-carousel-arrow.next {
  right: 32px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  width: 28px;
  background: #FF6B00;
}

/* Bottom Trust Bar */
.hero-bottom-trust-bar {
  background: #081712;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero Stats */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition);
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
}

.stat-number span {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.8rem;
  color: #CBD5E1;
  font-weight: 500;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 70px 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-bg-smoke {
  background-color: var(--bg-smoke);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.sub-title {
  display: inline-block;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.sec-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.sec-desc {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.6;
}

/* Slider Controls & Hints */
.mobile-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-dots-container {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  width: 24px;
  background: var(--primary);
}

/* ==========================================================================
   TOUR CATEGORIES
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  padding-bottom: 16px;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.category-img-wrap {
  width: 100%;
  height: 170px;
  overflow: hidden;
  position: relative;
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img-wrap img {
  transform: scale(1.08);
}

.category-info {
  padding: 16px 14px 4px;
}

.category-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.category-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   POPULAR DESTINATIONS SLIDESHOW
   ========================================================================== */
.destination-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.dest-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.dest-nav-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.dest-nav-btn.prev {
  left: -20px;
}

.dest-nav-btn.next {
  right: -20px;
}

.destination-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 4px 20px;
  width: 100%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.destination-grid::-webkit-scrollbar {
  display: none;
}

.destination-card {
  position: relative;
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  scroll-snap-align: start;
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(11, 124, 86, 0.22);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 20%, rgba(7, 30, 22, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: var(--white);
  transition: var(--transition);
}

.dest-badge {
  align-self: flex-start;
  background: rgba(255, 138, 0, 0.9);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.destination-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 2px;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.destination-count {
  font-size: 0.86rem;
  color: #A7F3D0;
  font-weight: 700;
  margin-bottom: 14px;
}

.destination-btn {
  align-self: flex-start;
  font-size: 0.82rem;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: var(--transition);
}

.destination-card:hover .destination-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateX(4px);
}

/* ==========================================================================
   POPULAR TOURS (ENLIVE TRIPS STYLE CARDS)
   ========================================================================== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--slate);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

/* Matches .tour-cat-count on the row heading, so a pill and its row read as
   the same thing — same label, same icon, same number of trips. */
.filter-btn-count {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  margin-left: 4px;
}

.filter-btn.active .filter-btn-count {
  background: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 26px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 107, 0, 0.35);
}

.tour-image-box {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}

.tour-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.tour-card:hover .tour-image-box img {
  transform: scale(1.06);
}

.tour-top-badges {
  position: absolute;
  inset: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  z-index: 2;
  /* The container now spans the whole image, so it must not swallow the
     hover that scales it. */
  pointer-events: none;
}

/* Route pill holds the top-left; the duration drops to the bottom-right.
   "Popular Tour" is positioned separately, over the top-right corner. */
.tour-top-badges .duration-pill {
  align-self: flex-end;
}

.discount-badge-top {
  background: rgba(220, 38, 38, 0.92);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.route-pill {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.duration-pill {
  background: var(--primary);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tour-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  cursor: pointer;
}

.tour-title:hover {
  color: var(--primary);
}

.tour-dates-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--slate);
  background: var(--bg-light);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid #EEF2F0;
}

.tour-dates-row svg {
  color: var(--primary);
  flex-shrink: 0;
}

.tour-dates-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.tour-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-current {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
}

.price-striked {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}

.per-person {
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 500;
}

.discount-tag {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.tour-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.btn-call {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-call:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-callback {
  flex: 1;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 107, 0, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.btn-callback:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-details {
  background: var(--dark);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-details:hover {
  background: #000000;
}

/* ==========================================================================
   ABOUT / PLAN YOUR TRIP SECTION (ENLIVE STYLE)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-images-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-box.tall {
  grid-row: span 2;
  height: 380px;
}

.about-img-box.short {
  height: 182px;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
}

.about-floating-badge .star-icon {
  color: #FFA944;
  font-size: 1.4rem;
}

.about-floating-badge strong {
  font-size: 1.1rem;
  color: var(--dark);
  display: block;
}

.about-floating-badge span {
  font-size: 0.78rem;
  color: var(--slate);
}

.about-content-wrap .sec-title {
  text-align: left;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.about-feature-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 0, 0.35);
}

.why-card:hover::before {
  height: 100%;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS (ORIGINAL GOOGLE REVIEWS SLIDESHOW)
   ========================================================================== */
.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 6px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  max-width: 400px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 0, 0.35);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--dark);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev {
  left: -24px;
}

.slider-arrow.next {
  right: -24px;
}

@media (max-width: 1200px) {
  .slider-arrow.prev {
    left: -12px;
  }

  .slider-arrow.next {
    right: -12px;
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 290px;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 88%;
    min-width: 270px;
  }

  .slider-arrow {
    display: none;
  }
}

.slider-dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
  background: #9CA3AF;
}

.slider-dot.active {
  width: 28px;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}

.testi-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.testi-avatar-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--bg-smoke);
}

.testi-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-avatar-fallback {
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-meta {
  flex: 1;
}

.testi-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}

.testi-meta h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
}

.testi-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4B5563;
  background: #F3F4F6;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

.testi-trip-tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
}

.testi-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border);
}

.testi-stars {
  color: #F59E0B;
  font-size: 0.92rem;
  letter-spacing: 1px;
}

.testi-date {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.testi-text {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
  font-style: italic;
}

.testi-text.expanded {
  -webkit-line-clamp: unset;
}

.testi-read-more {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 8px 0 0;
  text-align: left;
}

/* ==========================================================================
   SOCIAL MEDIA VIDEO & REELS 3D COVERFLOW SHOWCASE — ORANGE & WHITE THEME
   ========================================================================== */
.section-video-showcase {
  padding: 60px 0 70px;
  background: #FFFBF8;
  border-top: 1px solid #FFE4D6;
  border-bottom: 1px solid #FFE4D6;
  overflow: hidden;
}

.video-showcase-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}

.video-showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF0E5;
  color: #EA580C;
  border: 1px solid #FED7AA;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.video-showcase-main-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.video-showcase-subtitle {
  font-size: 0.96rem;
  color: #64748B;
  margin: 0;
  max-width: 620px;
  line-height: 1.5;
}

.video-showcase-tabs {
  display: flex;
  gap: 6px;
  background: #FFFFFF;
  padding: 5px;
  border: 1px solid #FFE4D6;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.06);
}

.video-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  transition: all 0.25s ease;
}

.video-tab-btn:hover {
  color: #0F172A;
  background: #FFF7ED;
}

.video-tab-btn.active {
  background: #FF6B00;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

/* --- 3D Cover Flow Stage Wrapper --- */
.coverflow-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 30px auto 0;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.coverflow-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* Individual Coverflow Card — Pure video without cover page photo or text overlay */
.coverflow-card {
  position: absolute;
  width: 290px;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  background: #0F172A;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.55s ease, filter 0.55s ease, box-shadow 0.55s ease;
  cursor: pointer;
  touch-action: pan-y;
  will-change: transform, opacity, filter;
}

.coverflow-card video,
.coverflow-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
  pointer-events: none;
  background: #000;
}

/* --- 3D Position Classes --- */
.coverflow-card.pos-center {
  transform: translate3d(0, 0, 0) scale(1.08);
  z-index: 10;
  opacity: 1;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));
  box-shadow: 0 24px 60px rgba(255, 107, 0, 0.28), 0 12px 30px rgba(0,0,0,0.35);
  border-color: rgba(255, 107, 0, 0.75);
}

.coverflow-card.pos-center iframe,
.coverflow-card.pos-center video {
  pointer-events: auto;
}

/* Floating Link Badge on Hover */
.coverflow-card .coverflow-card-link-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 15;
}

.coverflow-card.pos-center:hover .coverflow-card-link-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.coverflow-card.pos-center:hover {
  box-shadow: 0 30px 75px rgba(255, 107, 0, 0.4), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.coverflow-card.pos-left-1 {
  transform: translate3d(-180px, 0, -80px) scale(0.88);
  z-index: 6;
  opacity: 0.75;
  filter: brightness(0.7) blur(1px);
}

.coverflow-card.pos-right-1 {
  transform: translate3d(180px, 0, -80px) scale(0.88);
  z-index: 6;
  opacity: 0.75;
  filter: brightness(0.7) blur(1px);
}

.coverflow-card.pos-left-2 {
  transform: translate3d(-330px, 0, -160px) scale(0.74);
  z-index: 3;
  opacity: 0.45;
  filter: brightness(0.5) blur(2px);
}

.coverflow-card.pos-right-2 {
  transform: translate3d(330px, 0, -160px) scale(0.74);
  z-index: 3;
  opacity: 0.45;
  filter: brightness(0.5) blur(2px);
}

.coverflow-card.pos-hidden-left {
  transform: translate3d(-460px, 0, -260px) scale(0.5);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.coverflow-card.pos-hidden-right {
  transform: translate3d(460px, 0, -260px) scale(0.5);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Coverflow Navigation Arrows */
.coverflow-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #FFE4D6;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.25s ease;
}

.coverflow-arrow-btn.prev {
  left: 10px;
}

.coverflow-arrow-btn.next {
  right: 10px;
}

.coverflow-arrow-btn:hover {
  background: #FF6B00;
  color: #FFFFFF;
  border-color: #FF6B00;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  transform: translateY(-50%) scale(1.1);
}

/* Dots */
.coverflow-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.coverflow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coverflow-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #FF6B00;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}

@media (max-width: 768px) {
  .coverflow-stage-wrapper {
    height: 450px;
  }
  .coverflow-card {
    width: 240px;
    height: 380px;
    border-radius: 22px;
  }
  .coverflow-card.pos-center {
    transform: translate3d(0, 0, 0) scale(1.05);
  }
  .coverflow-card.pos-left-1 {
    transform: translate3d(-135px, 0, -60px) scale(0.85);
  }
  .coverflow-card.pos-right-1 {
    transform: translate3d(135px, 0, -60px) scale(0.85);
  }
  .coverflow-card.pos-left-2,
  .coverflow-card.pos-right-2 {
    display: none;
  }
  .coverflow-arrow-btn {
    width: 40px;
    height: 40px;
  }
  .coverflow-arrow-btn.prev {
    left: 2px;
  }
  .coverflow-arrow-btn.next {
    right: 2px;
  }
}

/* --- Video Lightbox Modal --- */
.video-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #0F172A;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.video-lightbox-close:hover {
  background: #FF6B00;
  color: #FFFFFF;
  transform: scale(1.1);
}

.video-lightbox-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-lightbox-player-container.vertical {
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}

.video-lightbox-player-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .section-video-showcase {
    padding: 44px 0;
  }
  .video-showcase-main-title {
    font-size: 1.5rem;
  }
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .yt-videos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   TOP BLOG READS (HOMEPAGE 4-CARD ROW) — ORANGE & WHITE THEME
   ========================================================================== */
.section-top-blogs {
  padding: 56px 0;
  background: #FFFFFF;
}

.top-blogs-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

/* "View More" sits under the cards rather than beside the heading. */
.top-blogs-footer-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

@media (max-width: 640px) {

  /* Full width on phones, where a right-hugging button reads as stray. */
  .top-blogs-footer-row .btn-top-blogs-view-more {
    width: 100%;
    justify-content: center;
  }
}

.top-blogs-main-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.5px;
}

.btn-top-blogs-view-more {
  background: #FF6B00;
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  padding: 10px 24px;
  font-size: 0.94rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.32);
}

.btn-top-blogs-view-more:hover {
  background: #EA580C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
}

.btn-top-blogs-view-more .view-more-svg {
  flex-shrink: 0;
}

.top-blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.top-blog-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.top-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.09);
  border-color: #FED7AA;
}

.top-blog-img-box {
  position: relative;
  height: 175px;
  border-radius: 14px;
  overflow: hidden;
  background: #0F172A;
}

.top-blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.top-blog-card:hover .top-blog-img-box img {
  transform: scale(1.07);
}

.top-blog-arrow-circle {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.top-blog-card:hover .top-blog-arrow-circle {
  background: #FF6B00;
  transform: scale(1.08);
}

.top-blog-info {
  padding: 14px 4px 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.top-blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.top-blog-card:hover .top-blog-title {
  color: #FF6B00;
}

.top-blog-date {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 500;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .top-blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-blogs-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 10px 16px 20px !important;
    margin: 0 -20px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .top-blogs-grid::-webkit-scrollbar {
    display: none !important;
  }

  .top-blog-card {
    flex: 0 0 85vw !important;
    max-width: 320px !important;
    scroll-snap-align: center !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
  }
}

/* ==========================================================================
   DEDICATED FULL BLOGS PORTAL SPACE ("VIEW MORE" PAGE) — ORANGE & WHITE
   ========================================================================== */
.all-blogs-space-modal {
  position: fixed;
  inset: 0;
  background: #FAFAFA;
  z-index: 2900;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.all-blogs-space-modal.active {
  opacity: 1;
  visibility: visible;
}

.portal-top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E2E8F0;
  padding: 16px 0;
}

.portal-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-portal-back {
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  color: #EA580C;
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-portal-back:hover {
  background: #FF6B00;
  color: #FFFFFF;
  border-color: #FF6B00;
}

.portal-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
}

.portal-brand-title span {
  color: #FF6B00;
}

.portal-close-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #64748B;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.portal-close-icon:hover {
  background: #FFF7ED;
  color: #FF6B00;
  border-color: #FED7AA;
}

.portal-body-wrapper {
  padding: 40px 0 80px;
}

.portal-section-header {
  margin-bottom: 24px;
}

.portal-main-heading {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
}

/* Featured Hero 2-Column Grid */
.featured-blogs-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  margin-bottom: 42px;
}

.portal-hero-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 16px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.portal-hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(255, 107, 0, 0.1);
  border-color: #FED7AA;
}

.portal-hero-img-box {
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #0F172A;
  margin-bottom: 16px;
}

.portal-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portal-hero-card:hover .portal-hero-img-box img {
  transform: scale(1.05);
}

.portal-hero-info {
  display: flex;
  flex-direction: column;
}

.portal-date-label {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 500;
  margin-bottom: 6px;
}

.portal-hero-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s ease;
}

.portal-hero-card:hover .portal-hero-title {
  color: #FF6B00;
}

/* Right Side 2 Stacked Horizontal Cards */
.portal-side-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portal-side-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  flex: 1;
}

.portal-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.08);
  border-color: #FED7AA;
}

.portal-side-img-box {
  width: 160px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0F172A;
}

.portal-side-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portal-side-card:hover .portal-side-img-box img {
  transform: scale(1.06);
}

.portal-side-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portal-side-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.portal-side-card:hover .portal-side-title {
  color: #FF6B00;
}

/* All Blogs 3-Column Grid */
.portal-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.portal-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.portal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.08);
  border-color: #FED7AA;
}

.portal-card-img-box {
  height: 205px;
  border-radius: 14px;
  overflow: hidden;
  background: #0F172A;
  margin-bottom: 12px;
}

.portal-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portal-card:hover .portal-card-img-box img {
  transform: scale(1.06);
}

.portal-card-info {
  display: flex;
  flex-direction: column;
}

.portal-card-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.portal-card:hover .portal-card-title {
  color: #FF6B00;
}

/* Bottom Centered View More Button */
.portal-bottom-cta {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.btn-portal-pill-more {
  background: #FF6B00;
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  padding: 12px 42px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 22px rgba(255, 107, 0, 0.35);
}

.btn-portal-pill-more:hover {
  background: #EA580C;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.48);
}

@media (max-width: 1024px) {
  .featured-blogs-hero-grid {
    grid-template-columns: 1fr;
  }

  .portal-all-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portal-all-grid {
    grid-template-columns: 1fr;
  }

  .portal-side-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-side-img-box {
    width: 100%;
    height: 180px;
  }
}

/* ==========================================================================
   DEDICATED FULL BLOG ARTICLE PAGE VIEW (ORANGE & WHITE THEME)
   ========================================================================== */
.blog-article-full-page {
  position: fixed;
  inset: 0;
  background: #FAFAFA;
  z-index: 3100;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
}

.blog-article-full-page.active {
  opacity: 1;
  visibility: visible;
}

/* Sticky Navigation Header */
.article-page-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
  padding: 14px 0;
}

.article-page-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-article-back {
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  color: #EA580C;
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-article-back:hover {
  background: #FF6B00;
  color: #FFFFFF;
  border-color: #FF6B00;
}

.article-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-article-view-trip-details {
  background: #FF6B00;
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.32);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-article-view-trip-details:hover {
  background: #EA580C;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.45);
}

.article-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #64748B;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-close-btn:hover {
  background: #FFF7ED;
  color: #FF6B00;
  border-color: #FED7AA;
}

/* Article Main Body */
.article-page-main {
  padding: 36px 0 60px;
}

.article-page-container {
  max-width: 1180px;
}

.article-breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #64748B;
  margin-bottom: 22px;
  font-weight: 500;
}

.article-breadcrumb-bar a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb-bar a:hover {
  color: #FF6B00;
}

.crumb-sep {
  color: #CBD5E1;
}

.crumb-active {
  color: #0F172A;
  font-weight: 700;
}

/* Header Info */
.article-header-section {
  margin-bottom: 28px;
  max-width: 920px;
}

.article-category-chip {
  display: inline-block;
  background: #FF6B00;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.article-hero-heading {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.28;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.article-author-info-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.article-author-details {
  display: flex;
  flex-direction: column;
}

.article-author-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
}

.article-meta-row {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 500;
}

/* Hero Cover Banner */
.article-cover-banner-box {
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: #0F172A;
  margin-bottom: 40px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.article-cover-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2-Column Content Layout */
.article-two-col-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  margin-bottom: 60px;
}

/* Main Prose Left Column */
.article-left-content-col {
  min-width: 0;
}

.article-highlight-quote-card {
  background: #FFF7ED;
  border-left: 4px solid #FF6B00;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.article-highlight-quote-card p {
  font-size: 1.06rem;
  color: #9A3412;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

.article-rich-prose {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.85;
}

.prose-h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  margin: 36px 0 14px;
  letter-spacing: -0.3px;
}

.prose-h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  margin: 28px 0 12px;
  letter-spacing: -0.3px;
}

.prose-p {
  margin-bottom: 20px;
}

.prose-list {
  padding-left: 24px;
  margin-bottom: 24px;
}

.prose-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-author-signature-card {
  margin-top: 48px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.signature-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF7ED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.signature-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 4px;
}

.signature-info p {
  font-size: 0.86rem;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

.btn-signature-wa {
  margin-left: auto;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.btn-signature-wa:hover {
  transform: translateY(-2px);
}

/* Sidebar Column */
.article-right-sidebar-col {
  min-width: 0;
}

.article-sticky-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-sidebar-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.consult-box {
  background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
  border-color: #FED7AA;
}

.sidebar-badge-pill {
  background: #FFEDD5;
  color: #C2410C;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.consult-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 8px;
}

.consult-box p {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 18px;
}

.btn-sidebar-primary-orange {
  display: block;
  width: 100%;
  text-align: center;
  background: #FF6B00;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.28);
}

.btn-sidebar-primary-orange:hover {
  background: #EA580C;
  transform: translateY(-1px);
}

.btn-sidebar-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  text-decoration: none;
  padding: 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.2s ease;
}

.btn-sidebar-outline:hover {
  border-color: #FF6B00;
  color: #FF6B00;
}

.guarantees-box h4 {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 14px;
}

.sidebar-guarantees-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.86rem;
  color: #475569;
}

.sidebar-guarantees-list span {
  color: #10B981;
  font-weight: 800;
  margin-right: 8px;
}

/* Related Guides Section */
.article-more-guides-section {
  padding-top: 48px;
  border-top: 1px solid #E2E8F0;
  margin-top: 20px;
}

.more-guides-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.more-guides-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.btn-more-guides-all {
  background: none;
  border: none;
  color: #FF6B00;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-more-guides-all:hover {
  transform: translateX(3px);
}

.more-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Article Page Footer */
.article-page-footer {
  background: #0F172A;
  padding: 48px 0;
  color: #FFFFFF;
}

.article-footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.article-footer-left h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.article-footer-left p {
  font-size: 0.88rem;
  color: #94A3B8;
  margin: 0;
}

.btn-article-footer-wa {
  background: #FF6B00;
  color: #FFFFFF;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
  transition: all 0.2s ease;
}

.btn-article-footer-wa:hover {
  background: #EA580C;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .article-two-col-layout {
    grid-template-columns: 1fr;
  }

  .article-cover-banner-box {
    height: 340px;
  }

  .more-guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .article-hero-heading {
    font-size: 1.7rem;
  }

  .article-cover-banner-box {
    height: 240px;
    border-radius: 16px;
  }

  .more-guides-grid {
    grid-template-columns: 1fr;
  }

  .article-author-signature-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-signature-wa {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
  background: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding: 0 22px 20px;
}

.faq-item.faq-item-extra {
  display: none;
}

.faq-wrap.show-all .faq-item.faq-item-extra {
  display: block;
  animation: faqItemFadeIn 0.35s ease forwards;
}

@keyframes faqItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.btn-faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 36px;
  background: var(--white);
  border: 1.5px solid #E2E8F0;
  color: var(--dark);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-faq-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.25);
}

.btn-faq-toggle svg {
  transition: transform 0.3s ease;
}

.btn-faq-toggle.expanded svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   CONTACT & INQUIRY FORM
   ========================================================================== */
.contact-section {
  background: linear-gradient(135deg, #7C2D12 0%, #431407 100%);
  color: var(--white);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.contact-info .sub-title {
  color: #FED7AA;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.contact-info .sec-title {
  color: var(--white);
  text-align: left;
}

.contact-info .sec-desc {
  color: #FFEDD5;
  margin-bottom: 30px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FED7AA;
  font-size: 1.2rem;
}

.contact-detail-row strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #FED7AA;
  letter-spacing: 1px;
}

.contact-detail-row span {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-form-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-form-card p {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.18);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

/* ==========================================================================
   FOOTER & NEWSLETTER
   ========================================================================== */
.footer-wrap {
  background: #18181B;
  color: #CBD5E1;
  padding-top: 60px;
}

/* ========= WhatsApp Channel CTA Banner (Orange, White & Green Theme) ========= */
.wa-channel-banner {
  background: linear-gradient(135deg, #ff6a00 0%, #ff6600 50%, #ff5900 100%);
  border-radius: 20px;
  padding: 34px 42px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  box-shadow: 0 10px 35px rgba(255, 107, 0, 0.28);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Decorative glow blobs */
.wa-channel-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.wa-channel-banner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.wa-channel-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 260px;
  position: relative;
  z-index: 1;
}

.wa-channel-icon-wrap {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 18px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: #25D366;
  border: 2px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.wa-channel-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.14);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.wa-channel-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.wa-channel-sub {
  font-size: 0.92rem;
  color: #FFF7ED;
  line-height: 1.5;
  font-weight: 500;
}

.wa-channel-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #25D366;
  color: #FFFFFF !important;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(37, 211, 102, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid #FFFFFF;
}

.wa-channel-join-btn:hover {
  background: #1EBE5D;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .wa-channel-banner {
    padding: 24px 20px !important;
    gap: 18px !important;
    text-align: center !important;
    border-radius: 16px !important;
    margin-bottom: 40px !important;
  }

  .wa-channel-left {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .wa-channel-title {
    font-size: 1.3rem !important;
  }

  .wa-channel-sub {
    font-size: 0.84rem !important;
  }

  .wa-channel-join-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: #64748B;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-pill {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: #CBD5E1;
  font-weight: 600;
}

/* ==========================================================================
   MODALS (TOUR DETAIL & CALLBACK)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active,
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: var(--transition);
  cursor: default;
}

.modal-overlay.active .modal-dialog,
.modal-overlay.show .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--primary);
}

.modal-hero-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.modal-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  color: var(--white);
}

.modal-hero-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
}

.modal-body {
  padding: 26px;
}

.modal-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-pill {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

.modal-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 22px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
}

/* Day-by-Day Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-day-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--bg-light);
}

.timeline-day-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.day-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.timeline-day-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.55;
  padding-left: 4px;
}

/* Inclusions & Exclusions Grid */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 8px;
}

.check-icon {
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.cross-icon {
  color: var(--danger);
  font-weight: 800;
  flex-shrink: 0;
}

.modal-footer-cta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Callback Modal Custom */
.callback-dialog {
  max-width: 480px;
  padding: 32px;
}

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111827;
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-msg.success {
  background: #065F46;
  border-left: 4px solid #10B981;
}

.toast-msg.error {
  background: #991B1B;
  border-left: 4px solid #EF4444;
}

/* ==========================================================================
   TOUR EXPERIENCE SPACE FAQS
   ========================================================================== */
.space-faqs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.space-faq-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.space-faq-item.active {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.08);
}

.space-faq-question {
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
}

.space-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.space-faq-item.active .space-faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.space-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 18px;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.6;
}

.space-faq-item.active .space-faq-answer {
  max-height: 250px;
  padding: 0 18px 16px;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (CIRCULAR GLOW WIDGETS)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 28px;
  left: 24px;
  right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 1500;
}

body.in-tour-space .floating-actions-container {
  display: none !important;
}

.floating-circle-btn {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-circle-btn:hover {
  transform: scale(1.08);
}

.floating-circle-halo {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-circle-btn:hover .floating-circle-halo {
  transform: scale(1.18);
  opacity: 1;
}

.floating-circle-core {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  z-index: 2;
  transition: box-shadow 0.25s ease;
}

.floating-circle-btn:hover .floating-circle-core {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* WhatsApp (Emerald Green with Mint Halo) */
.floating-circle-btn.whatsapp .floating-circle-halo {
  background: rgba(37, 211, 102, 0.25);
}

.floating-circle-btn.whatsapp .floating-circle-core {
  background: #25D366;
}

/* Instagram (Signature Sunset Gradient with Magenta Halo) */
.floating-circle-btn.instagram .floating-circle-halo {
  background: rgba(225, 48, 108, 0.28);
}

.floating-circle-btn.instagram .floating-circle-core {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* ==========================================================================
   MOBILE APP-STYLE BOTTOM ACTION BAR
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  height: 62px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.07);
  padding: 4px 10px calc(4px + env(safe-area-inset-bottom));
}

body.in-tour-space .mobile-bottom-bar {
  display: none !important;
}

.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #64748B;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  flex: 1;
  padding: 6px 4px;
  border-radius: 10px;
  transition: all 0.18s ease;
}

.mobile-bottom-item:active {
  transform: scale(0.94);
}

.mobile-bottom-item.active {
  color: var(--primary);
}

.mobile-bottom-item.mb-whatsapp-btn {
  color: #16A34A;
}

.mobile-bottom-item.mb-action-cta {
  color: var(--primary);
  font-weight: 800;
}

.mobile-bottom-item .mb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.mobile-bottom-item .mb-label {
  line-height: 1;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES & MOBILE SLIDESHOW
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  html,
  body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: clip !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  body {
    padding-top: 96px !important;
    padding-bottom: calc(62px + env(safe-area-inset-bottom)) !important;
  }

  body:has(.tour-detail-space) {
    padding-top: 0 !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .tour-detail-space {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  .floating-actions-container {
    display: none !important;
  }

  .header-top {
    display: none !important;
  }

  .nav-menu,
  .nav-actions .btn-callback-nav {
    display: none;
  }

  .mobile-header-wa-btn {
    display: none !important;
  }

  .mobile-header-promos {
    display: none !important;
  }



  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: #F8FAFC !important;
    border: 1px solid var(--border) !important;
    color: var(--dark) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
  }

  .mobile-toggle svg {
    width: 19px !important;
    height: 19px !important;
    stroke: #0F172A !important;
  }

  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    z-index: 1500 !important;
    background: #FFFFFF !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07) !important;
    padding: 6px 0 5px !important;
    margin: 0 !important;
  }

  .navbar {
    height: auto !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .brand-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
  }

  .logo-badge {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    border: 2px solid #FF6000 !important;
    box-shadow: 0 2px 6px rgba(255, 107, 0, 0.25) !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .brand-logo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .brand-text {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  /* Mobile Promo Strip (Row 2 in Sticky Header) */
  .mobile-promo-strip {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 0 2px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-promo-strip::-webkit-scrollbar {
    display: none !important;
  }

  .mob-promo-pill {
    padding: 4px 12px !important;
    font-size: 0.71rem !important;
    font-weight: 800 !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.2px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.4) !important;
  }

  .mob-promo-pill svg {
    width: 11px !important;
    height: 11px !important;
    flex-shrink: 0 !important;
  }

  .mob-promo-pill.festive-badge {
    box-shadow: 0 3px 12px rgba(230, 57, 70, 0.45) !important;
  }

  /* Hero Section on Mobile */
  .hero-section {
    height: 520px;
    min-height: 520px;
    max-height: 78vh;
  }

  .hero-carousel-arrow {
    display: none !important;
  }

  .hero-slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 6s ease-out;
  }

  .hero-slide.active {
    opacity: 1 !important;
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.58) 100%) !important;
    padding: 24px 18px 45px !important;
    justify-content: flex-end !important;
  }

  .hero-content {
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-byko-tag {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(0, 0, 0, 0.9) !important;
    margin-bottom: 6px !important;
  }

  .hero-byko-title {
    font-size: clamp(1.85rem, 7vw, 2.4rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.16 !important;
    margin-bottom: 8px !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 4px 20px rgba(0, 0, 0, 0.9) !important;
  }

  .hero-byko-meta {
    gap: 12px !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(0, 0, 0, 0.9) !important;
    margin-bottom: 8px !important;
  }

  .hero-byko-price {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 4px 16px rgba(0, 0, 0, 0.9) !important;
    margin-bottom: 16px !important;
  }

  .hero-byko-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    margin: 0 auto 16px !important;
    max-width: 95% !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(0, 0, 0, 0.9) !important;
    opacity: 1 !important;
  }

  .hero-byko-cta-btn {
    padding: 12px 28px !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    border-radius: var(--radius-full) !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.55) !important;
  }

  .hero-slider-dots {
    bottom: 16px;
    gap: 6px;
  }

  .hero-dot {
    width: 7px;
    height: 7px;
  }

  .hero-dot.active {
    width: 24px;
    border-radius: 6px;
  }

  /* Trust Bar on Mobile */
  .hero-bottom-trust-bar {
    padding: 10px 0 !important;
    background: #FFFFFF !important;
    border-bottom: 1px solid #F0EAE1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .hero-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-stat-card {
    min-width: 0 !important;
    padding: 6px 2px !important;
    background: #FAF7F2 !important;
    border: 1px solid #F0EAE1 !important;
    border-radius: 8px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .hero-stat-card .stat-number {
    font-size: 0.94rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: var(--primary) !important;
    white-space: nowrap !important;
  }

  .hero-stat-card .stat-label {
    font-size: 0.56rem !important;
    font-weight: 700 !important;
    color: #64748B !important;
    margin-top: 2px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* Section Spacing & Headers on Mobile */
  .section {
    padding: 44px 0;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .sub-title {
    font-size: 0.74rem;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }

  .sec-title {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
  }

  .sec-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* Filter Tabs on Mobile */
  .filter-tabs,
  .gallery-filter-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 8px !important;
    padding: 4px 0 14px !important;
    margin-bottom: 12px !important;
    justify-content: flex-start !important;
  }

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

  .filter-btn,
  .gallery-filter-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-full) !important;
  }

  .search-container {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 12px;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .form-group-row,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-box {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  /* --- MOBILE SLIDESHOWS WITH TOUCH SCROLL-SNAP --- */
  .mobile-swipe-hint {
    display: flex;
  }

  .slider-dots-container {
    display: flex;
  }

  /* Horizontal swipeable slideshow on mobile */
  .category-grid,
  .destination-grid,
  .tours-grid,
  .testimonials-grid,
  .blogs-grid,
  .top-blogs-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 10px 16px 20px !important;
    margin: 0 -20px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .category-grid::-webkit-scrollbar,
  .destination-grid::-webkit-scrollbar,
  .tours-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar,
  .blogs-grid::-webkit-scrollbar,
  .top-blogs-grid::-webkit-scrollbar {
    display: none !important;
  }

  .category-card {
    flex: 0 0 74vw !important;
    max-width: 270px !important;
    scroll-snap-align: center !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  }

  .destination-card {
    flex: 0 0 78vw !important;
    max-width: 290px !important;
    scroll-snap-align: center !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
  }

  /* =========================================================================
     TOUR CARD MOBILE PORTRAIT OVERLAY (2 Full + 1 Peeking Card Layout)
     ========================================================================= */
  /* =========================================================================
  /* =========================================================================
     TOUR CARD MOBILE PORTRAIT OVERLAY (Orange & White Theme)
     ========================================================================= */
  .tour-card {
    position: relative !important;
    flex: 0 0 46vw !important;
    min-width: 46vw !important;
    max-width: 185px !important;
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #0f172a !important;
    border: 1.5px solid rgba(255, 107, 0, 0.28) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 107, 0, 0.12) !important;
    scroll-snap-align: start !important;
  }

  .tour-card .tour-image-box {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    z-index: 1 !important;
  }

  .tour-card .tour-image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .tour-card .tour-image-box::after {
    display: none !important;
  }

  .tour-card .tour-top-badges {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    right: 6px !important;
    inset: unset !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 4px !important;
    z-index: 10 !important;
    pointer-events: none !important;
  }

  .tour-card .discount-badge-top,
  .tour-card .route-pill {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8800 100%) !important;
    color: #ffffff !important;
    font-size: 0.55rem !important;
    font-weight: 800 !important;
    padding: 3px 7px !important;
    border-radius: 6px !important;
    letter-spacing: 0.2px !important;
    text-transform: uppercase !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.45) !important;
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1.1 !important;
  }

  .tour-card .route-pill svg {
    display: none !important;
  }

  .tour-card .duration-pill {
    margin-left: auto !important;
    background: #FFFFFF !important;
    color: #0F172A !important;
    font-size: 0.55rem !important;
    font-weight: 800 !important;
    padding: 3px 7px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 107, 0, 0.3) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1.1 !important;
  }

  .tour-card .duration-pill svg {
    display: none !important;
  }

  .tour-card .popular-tag {
    display: none !important;
  }

  .tour-card .tour-card-body {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 5 !important;
    padding: 24px 8px 8px !important;
    margin: 0 !important;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.85) 55%, rgba(255, 107, 0, 0.12) 82%, transparent 100%) !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    box-sizing: border-box !important;
  }

  .tour-card .tour-title {
    color: #ffffff !important;
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
    margin-bottom: 2px !important;
    min-height: 28px !important;
    max-height: 30px !important;
    -webkit-line-clamp: 2 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95) !important;
  }

  .tour-card .tour-pricing-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 4px !important;
  }

  .tour-card .price-box {
    display: flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    flex-wrap: wrap !important;
  }

  .tour-card .price-current {
    color: #FF9E00 !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9) !important;
    line-height: 1 !important;
    letter-spacing: -0.2px !important;
  }

  .tour-card .price-striked {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.6rem !important;
    text-decoration: line-through !important;
  }

  .tour-card .per-person {
    color: #FFFFFF !important;
    font-size: 0.54rem !important;
    margin-left: 2px !important;
    opacity: 0.85 !important;
  }

  .tour-card .discount-tag {
    display: none !important;
  }

  .tour-card .tour-actions-row {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 2px !important;
    width: 100% !important;
  }

  .tour-card .btn-call {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8800 100%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.45) !important;
  }

  .tour-card .btn-call svg {
    width: 12px !important;
    height: 12px !important;
    fill: #ffffff !important;
  }

  .tour-card .btn-callback {
    display: none !important;
  }

  .tour-card .btn-details {
    flex: 1 !important;
    background: #FFFFFF !important;
    color: #FF6000 !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    padding: 6px 4px !important;
    border-radius: 6px !important;
    text-align: center !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    border: 1.5px solid #FF6B00 !important;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25) !important;
    cursor: pointer !important;
    letter-spacing: 0.2px !important;
  }

  .testimonial-card {
    flex: 0 0 85vw !important;
    max-width: 320px !important;
    scroll-snap-align: center !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
  }

  .blog-card,
  .top-blog-card {
    flex: 0 0 85vw !important;
    max-width: 320px !important;
    scroll-snap-align: center !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
  }

  /* Why Grid on Mobile: Fixed 2 Lines (4 Columns x 2 Rows) */
  .why-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
    grid-auto-flow: row !important;
    gap: 8px !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }

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

  .why-card {
    padding: 10px 4px 8px !important;
    border-radius: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: flex-start !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    min-height: unset !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }

  .why-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 8px !important;
    margin-bottom: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary-light) !important;
    color: var(--primary) !important;
  }

  .why-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .why-title {
    font-size: 0.64rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    color: var(--dark) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    word-break: break-word !important;
  }

  .why-desc {
    display: none !important;
  }

  /* Gallery Grid on Mobile */
  .gallery-photos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .gallery-photo-card {
    border-radius: 12px !important;
  }

  /* Contact & Inquiry on Mobile */
  .contact-form-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .form-control {
    font-size: 16px !important;
    padding: 12px 14px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    gap: 4px;
  }

  .hero-stat-card {
    padding: 6px 2px;
  }

  .hero-stat-card .stat-number {
    font-size: 0.98rem;
  }

  .hero-stat-card .stat-label {
    font-size: 0.6rem;
  }
}

/* ==========================================================================
   POPULAR / FEATURED TOUR HIGHLIGHTS
   ========================================================================== */
.popular-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
  z-index: 4;
}

.is-popular-tour {
  border: 1.5px solid rgba(245, 158, 11, 0.4) !important;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.08) !important;
}

/* ==========================================================================
   DEDICATED FULL-VIEW TOUR EXPERIENCE SPACE (MOBILE-FIRST)
   ========================================================================== */
.tour-detail-space {
  background: #F8FAFC;
  min-height: 100vh;
  padding-bottom: 80px;
}

/* Top Sticky Navigation Bar */
.space-top-bar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.space-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-back-tours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #FFF7ED;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 107, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-back-tours:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateX(-2px);
}

.space-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #64748B;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 500px;
}

.space-breadcrumb span {
  color: #94A3B8;
}

.space-phone-btn,
.space-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--primary);
  color: #FFFFFF !important;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
  white-space: nowrap;
}

.space-phone-btn:hover,
.space-share-btn:hover {
  background: var(--primary-hover);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
}

/* Space Hero Visual Banner */
.space-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 20px;
  min-height: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #0F172A;
}

.space-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.space-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  color: #FFFFFF;
}

.space-hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.space-hero-badge {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.space-hero-badge.popular-pill {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border: none;
}

.space-hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.space-hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  color: #FFEDD5;
  flex-wrap: wrap;
}

/* In-Page Subnav Sticky Bar */
.space-subnav {
  position: sticky;
  top: 54px;
  z-index: 990;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  padding: 6px 10px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.space-subnav::-webkit-scrollbar {
  display: none;
}

.space-subnav a {
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.space-subnav a:hover,
.space-subnav a.active {
  background: var(--primary);
  color: #FFFFFF;
}

.space-card,
[id^="sec-"] {
  scroll-margin-top: 130px;
}

/* Tour Space Main Grid Layout */
.tour-space-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  margin-top: 24px;
  align-items: start;
}

.space-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.space-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.space-card-title svg {
  color: var(--primary);
}

.space-lead-text {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Highlights Grid */
.space-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.highlight-box-item {
  background: #FFF7ED;
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #1E293B;
  font-weight: 600;
}

.highlight-box-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Dates Chips Grid */
.dates-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.date-chip-card {
  border: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.date-chip-card:hover,
.date-chip-card.selected {
  border-color: var(--primary);
  background: #FFF7ED;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
}

.date-chip-date {
  font-weight: 800;
  color: #0F172A;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.date-chip-status {
  font-size: 0.74rem;
  font-weight: 700;
  color: #059669;
}

/* Day-wise Timeline V2 */
.itinerary-timeline-v2 {
  position: relative;
  padding-left: 0;
  margin-top: 18px;
  border-left: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical timeline line */
.itinerary-timeline-v2::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #FF6B00, #FF6B0020);
  border-radius: 2px;
  z-index: 0;
}

.itinerary-day-box {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 20px 18px 66px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  margin-bottom: 10px;
  z-index: 1;
}

/* Day number badge (circle on the timeline) */
.itinerary-day-box::before {
  content: attr(data-day);
  position: absolute;
  left: 8px;
  top: 18px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FF6B00, #FF8C38);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.35);
  line-height: 1;
  z-index: 2;
}

.itinerary-day-box:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.1);
}

.itinerary-day-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
  line-height: 1.35;
  position: relative;
}

/* Accent underline on title */
.itinerary-day-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #FF6B00, #FF8C38);
  border-radius: 2px;
  margin-top: 5px;
}

.itinerary-day-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-top: 8px;
}

/* Inclusions Comparison Grid */
.inclusions-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 14px;
}

.inc-col-card {
  border-radius: var(--radius-md);
  padding: 20px;
}

.inc-col-card.inclusions {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.inc-col-card.exclusions {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.inc-col-header {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.inc-col-card.inclusions .inc-col-header {
  color: #16A34A;
}

.inc-col-card.exclusions .inc-col-header {
  color: #DC2626;
}

.inc-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #334155;
}

.inc-item.yes svg {
  color: #16A34A;
  flex-shrink: 0;
  margin-top: 3px;
}

.inc-item.no svg {
  color: #DC2626;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   BATCHES AVAILABLE SECTION (MONTH TABS & DATE RANGE CARDS)
   ========================================================================== */
.batches-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 4px;
}

.batches-main-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.2px;
}

.batches-month-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.batches-month-tabs::-webkit-scrollbar {
  display: none;
}

.batch-month-tab {
  background: transparent;
  border: none;
  font-size: 0.96rem;
  font-weight: 600;
  color: #475569;
  padding: 8px 16px 10px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.batch-month-tab:hover {
  color: #FF6B00;
}

.batch-month-tab.active {
  color: #FF6B00;
  font-weight: 800;
  border-bottom: 3px solid #FF6B00;
}

.batches-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 8px 0 20px;
}

.batch-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.batch-v2-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.batch-v2-card>span:first-child,
.batch-v2-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.batch-v2-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.batch-v2-card.selected {
  border-color: #FF6B00;
  background: #FFFBF7;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.batch-v2-date {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.1px;
}

.batch-v2-status-pill {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.batch-v2-status-pill.available {
  background: #0E754F;
  color: #FFFFFF;
}

.batch-v2-status-pill.filling-fast {
  background: #EA580C;
  color: #FFFFFF;
}

.batch-v2-status-pill.sold-out {
  background: #DC2626;
  color: #FFFFFF;
}

.batch-v2-status-pill.unavailable {
  background: #64748B;
  color: #FFFFFF;
}

/* Time display inside batch cards */
.batch-v2-times {
  font-size: 0.76rem;
  font-weight: 600;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #F1F5F9;
  border-radius: 6px;
  width: 100%;
}

/* Sidebar time strip below selected batch banner */
.batch-time-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.batch-time-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.batch-time-item.dep svg {
  color: #FF6B00;
}

.batch-time-item.drop svg {
  color: #0E754F;
}

.batch-time-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #78716C;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.batch-time-val {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0F172A;
}

.batch-time-sep {
  font-size: 1rem;
  color: #9CA3AF;
  font-weight: 400;
}

/* Dropdown item time row */
.batch-item-times {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* Custom Dates Available Badge in Batches Header */
.custom-available-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #9A3412;
  background: #FFEDD5;
  border: 1px solid #FED7AA;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

/* Custom / Private Dates Banner Beside & Below Fixed Batches */
.custom-batch-banner {
  margin-top: 20px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1.5px solid #DBEAFE;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.04);
}

.custom-batch-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.custom-batch-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #DBEAFE;
  color: #1D4ED8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.custom-batch-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.custom-batch-desc {
  display: block;
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
}

.custom-batch-banner-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-enquire-custom {
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
}

.btn-enquire-custom:hover {
  background: #FF6B00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-wa-custom {
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}

.btn-wa-custom:hover {
  background: #1EBE5D;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* Sidebar Custom Dates Prompt */
.custom-dates-sidebar-prompt {
  margin-top: 10px;
  padding: 10px 14px;
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-dates-sidebar-prompt span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748B;
}

.custom-dates-sidebar-prompt strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FF6B00;
}

.custom-dates-sidebar-prompt:hover {
  background: #FFF7ED;
  border-color: #FF6B00;
  border-style: solid;
}

@media (max-width: 768px) {
  .custom-batch-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .custom-batch-banner-right {
    width: 100%;
    flex-direction: column;
  }

  .btn-enquire-custom,
  .btn-wa-custom {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .batches-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .batches-month-tabs {
    width: 100%;
    border-bottom: 1px solid #E2E8F0;
  }

  .batches-divider {
    display: none;
  }

  .batch-cards-grid {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }
}

/* Desktop Sticky Booking Sidebar */
.tour-space-sidebar {
  position: sticky;
  top: 120px;
  /* The card outgrew the viewport once payment options and coupons were
     added. Without a bound it can only pin after its bottom is reached,
     which reads as "sticky is broken"; it now scrolls inside itself. */
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  /* Room for the scrollbar so it never sits on top of the card border. */
  padding-right: 4px;
  scrollbar-width: thin;
}

.sticky-booking-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Price Summary Section */
.price-summary-header {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0F172A;
}

.price-summary-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 10px 0 14px;
}

.price-occ-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.price-occ-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748B;
}

.price-occ-tabs {
  display: flex;
  gap: 3px;
  background: #F1F5F9;
  border-radius: 10px;
  padding: 3px;
  border: 1px solid #E2E8F0;
}

.occ-tab {
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid transparent;
  background: transparent;
  color: #64748B;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.occ-tab.active {
  background: #FFFFFF;
  color: #FF6B00;
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 2px 6px rgba(255, 107, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.occ-tab:hover:not(.active) {
  color: #FF6B00;
}

.price-occ-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 14px 16px 12px;
  margin-bottom: 14px;
}

.price-occ-type-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.price-occ-sharing-desc {
  font-size: 0.76rem;
  font-weight: 500;
  color: #64748B;
}

.mob-sharing-sub {
  font-size: 0.70rem;
  color: #64748B;
  font-weight: 600;
  display: block;
}

.price-occ-values {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-occ-striked {
  font-size: 0.95rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 600;
}

.price-occ-main {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
}

.price-occ-per-person {
  display: block;
  font-size: 0.76rem;
  color: #94A3B8;
  font-weight: 600;
  margin-top: 2px;
}

/* ================= CUSTOM VARIABLE PRICING CARDS (ORANGE & WHITE THEME) ================= */
.custom-pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #F1F5F9;
}

.custom-pricing-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.custom-occ-box-wrapper {
  margin-bottom: 14px;
}

.custom-occ-box-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}

.custom-pricing-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid #FF6B00;
  color: #EA580C;
  background: #FFF7ED;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(255, 107, 0, 0.15);
}

.custom-pricing-info-icon:hover {
  background: #FF6B00;
  color: #FFFFFF;
  border-color: #EA580C;
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.35);
}

/* Compact Pop-out Tooltip for Occupancy Information */
.occ-popover-anchor {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.occ-popover-card {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9999;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #FED7AA;
  box-shadow: 0 10px 28px -4px rgba(15, 23, 42, 0.18), 0 3px 8px rgba(255, 107, 0, 0.1);
  padding: 12px 14px;
  animation: occPopoverIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

@keyframes occPopoverIn {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.occ-popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 1px solid #F1F5F9;
}

.occ-popover-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #EA580C;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.01em;
}

.occ-popover-close {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1;
  transition: all 0.15s ease;
}

.occ-popover-close:hover {
  color: #DC2626;
  background: #FEE2E2;
}

.occ-popover-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.occ-popover-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.76rem;
  color: #475569;
  line-height: 1.4;
}

.occ-popover-icon {
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.occ-popover-item strong {
  color: #0F172A;
  font-weight: 700;
}

.occ-popover-solo {
  margin-top: 4px;
  padding: 6px 8px;
  background: #FFF7ED;
  border: 1px dashed #FDBA74;
  border-radius: 6px;
  font-size: 0.72rem;
  color: #9A3412;
  line-height: 1.35;
  display: flex;
  gap: 5px;
  align-items: center;
}

.custom-occ-boxed-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  background: #F1F5F9;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  gap: 4px;
}

.custom-occ-boxed-btn {
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 7px;
  border: 1px solid transparent;
  background: transparent;
  color: #64748B;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.custom-occ-boxed-btn:hover:not(.active) {
  color: #0F172A;
  background: rgba(255, 255, 255, 0.65);
}

.custom-occ-boxed-btn.active {
  background: #FFFFFF;
  color: #FF6B00;
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow: 0 2px 6px rgba(255, 107, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.custom-pricing-scroll-list {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.custom-pricing-scroll-list::-webkit-scrollbar {
  width: 6px;
}

.custom-pricing-scroll-list::-webkit-scrollbar-track {
  background: #FFF7ED;
  border-radius: 4px;
}

.custom-pricing-scroll-list::-webkit-scrollbar-thumb {
  background: #FDBA74;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.custom-pricing-scroll-list::-webkit-scrollbar-thumb:hover {
  background: #FF6B00;
}

.custom-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  cursor: pointer;
  text-align: left;
  transition: all 0.18s ease;
  font-family: inherit;
}

.custom-pricing-item:hover {
  border-color: #FDBA74;
  background: #FFFAF5;
  transform: translateY(-1px);
}

.custom-pricing-item.active {
  border-color: #FF6B00;
  background: #FFF7ED;
  box-shadow: 0 0 0 1px #FF6B00, 0 4px 12px rgba(255, 107, 0, 0.12);
}

.custom-pricing-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding-right: 12px;
  flex-wrap: wrap;
}

.custom-pricing-vehicle {
  font-size: 0.90rem;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.35;
}

.custom-pricing-item.active .custom-pricing-vehicle {
  color: #9A3412;
}

.custom-pricing-sep {
  color: #CBD5E1;
  font-size: 0.85rem;
}

.custom-pricing-item.active .custom-pricing-sep {
  color: #FDBA74;
}

.custom-pricing-variant {
  font-size: 0.86rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.35;
}

.custom-pricing-item.active .custom-pricing-variant {
  color: #C2410C;
}

.custom-pricing-right {
  flex-shrink: 0;
  text-align: right;
}

.custom-pricing-amount {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0F172A;
  white-space: nowrap;
}

.custom-pricing-item.active .custom-pricing-amount {
  color: #EA580C;
}

.custom-pricing-gst-note {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
}

.custom-pricing-gst-note span {
  color: #FF6B00;
  font-weight: 800;
}


/* Legacy booking price display (keep for compatibility) */
.booking-pricing-header {
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.price-main-display {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-striked-display {
  font-size: 1.05rem;
  color: #94A3B8;
  text-decoration: line-through;
  margin-left: 8px;
}

/* Selected Batch Interactive Selector */
.selected-batch-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.selected-batch-banner {
  width: 100%;
  background: #FFF7ED;
  border: 1.5px solid rgba(255, 107, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.84rem;
  color: #C2410C;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(255, 107, 0, 0.08);
}

.selected-batch-banner:hover,
.selected-batch-banner.open {
  background: #FFEDD5;
  border-color: #FF6B00;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.2);
}

.batch-banner-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.batch-change-badge {
  background: #FF6B00;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.selected-batch-banner:hover .batch-change-badge {
  background: #EA580C;
}

.selected-batch-banner.open .batch-change-badge {
  background: #C2410C;
}

/* Batch Dropdown Menu */
.batch-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  z-index: 1000;
  overflow: hidden;
  animation: fadeInBatch 0.15s ease;
}

@keyframes fadeInBatch {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.batch-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.8rem;
  font-weight: 800;
  color: #334155;
}

.batch-dropdown-close {
  background: transparent;
  border: none;
  font-size: 0.85rem;
  color: #94A3B8;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.15s ease;
}

.batch-dropdown-close:hover {
  color: #0F172A;
}

.batch-dropdown-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 6px;
}

.batch-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  margin-bottom: 3px;
}

.batch-dropdown-item:hover {
  background: #FFF7ED;
}

.batch-dropdown-item.active {
  background: #FFF7ED;
  border: 1px solid rgba(255, 107, 0, 0.35);
}

.batch-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.batch-item-date {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0F172A;
}

.batch-item-status {
  font-size: 0.72rem;
  color: #64748B;
}

.batch-item-status.filling {
  color: #EA580C;
  font-weight: 600;
}

.batch-item-check {
  color: #FF6B00;
  font-weight: 900;
  font-size: 0.95rem;
}

.booking-actions-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- tour sidebar CTAs -----------------------------------------------
   Callback + WhatsApp sit on one row as icon-only buttons; "Book Now" is
   the full-width primary beneath them. Keeping the icon pair visually
   secondary is what makes Book Now read as the main action.
   -------------------------------------------------------------------- */

.booking-quick-actions {
  /* Two buttons normally, three when the tour has an itinerary PDF.
     auto-fit sizes them evenly either way, so no modifier class is needed. */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-auto-flow: column;
  gap: 10px;
}

.btn-quick-action {
  /* Square-ish tap target, comfortably above the 44px minimum. */
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  background: var(--white);
}

.btn-quick-action:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}

.btn-quick-call {
  color: var(--primary);
  border-color: rgba(255, 107, 0, 0.35);
  background: var(--primary-light);
}

.btn-quick-call:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
}

.btn-quick-whatsapp {
  color: #FFFFFF;
  background: #25D366;
  border-color: #25D366;
}

.btn-quick-whatsapp:hover {
  background: #1EBE5D;
  border-color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-quick-pdf {
  color: var(--dark);
  border-color: var(--border);
  background: var(--bg-light);
}

.btn-quick-pdf:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 24, 27, 0.25);
}

.btn-book-now {
  width: 100%;
  padding: 15px;
  background: var(--primary-gradient);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 107, 0, 0.45);
}

.btn-book-now:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  .btn-quick-action:hover,
  .btn-book-now:hover {
    transform: none;
  }
}

.booking-guarantee-points {
  margin-top: 18px;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: #64748B;
}

.booking-guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-guarantee-item svg {
  color: #10B981;
  flex-shrink: 0;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-tour-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding: 10px 16px;
  z-index: 2500;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-bottom-price {
  display: flex;
  flex-direction: column;
}

.mobile-bottom-price strong {
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.mobile-bottom-price span {
  font-size: 0.72rem;
  color: #64748B;
}

.mobile-bottom-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-mob-call {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #FFF7ED;
  color: var(--primary);
  border: 1px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-mob-wa {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #DCFCE7;
  color: #16A34A;
  border: 1px solid #BBF7D0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-mob-pdf {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-mob-pdf:hover,
.btn-mob-pdf:active {
  background: #DC2626;
  color: #FFFFFF;
  border-color: #DC2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.btn-mob-book {
  padding: 11px 18px;
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.space-card-header-with-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-download-itinerary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #FEF2F2;
  color: #DC2626;
  border: 1.5px solid #FECACA;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-download-itinerary:hover {
  background: #DC2626;
  color: #FFFFFF;
  border-color: #DC2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.itinerary-footer-action {
  display: none;
}

@media (min-width: 769px) {
  .btn-download-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .btn-download-desktop {
    display: none !important;
  }

  .itinerary-footer-action {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin-top: 14px !important;
  }

  .btn-download-mobile {
    display: inline-flex !important;
    padding: 9px 16px !important;
    font-size: 0.85rem !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 400px) {
  .mobile-tour-bottom-bar {
    padding: 8px 10px !important;
    gap: 6px !important;
  }

  .mobile-bottom-price strong {
    font-size: 1.15rem !important;
  }

  .mobile-bottom-price span {
    font-size: 0.65rem !important;
  }

  .mobile-bottom-actions {
    gap: 5px !important;
  }

  .btn-mob-call,
  .btn-mob-wa,
  .btn-mob-pdf {
    width: 36px !important;
    height: 36px !important;
  }

  .btn-mob-book {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
  }
}

/* ===== Mobile Price Strip & Pricing Card ===== */
/* Hidden on desktop — shown only on mobile via media query below */
.mob-pricing-card {
  display: none;
}

.mob-price-strip {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 12px 16px;
  margin: 12px 0 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  gap: 10px;
}

.mob-price-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mob-occ-tabs {
  display: flex;
  gap: 4px;
  background: #F1F5F9;
  border-radius: 20px;
  padding: 3px;
  width: fit-content;
}

.mob-occ-pill {
  padding: 4px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #64748B;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.mob-occ-pill.active {
  background: #FFFFFF;
  color: #1E40AF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.mob-price-detail {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.mob-price-striked {
  font-size: 0.82rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 600;
}

.mob-price-main {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
}

.mob-price-pp {
  font-size: 0.74rem;
  color: #94A3B8;
  font-weight: 600;
}

.mob-price-book-btn {
  padding: 11px 18px;
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 800;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mob-price-book-btn:active {
  transform: scale(0.97);
}

/* Responsive: Tour Detail Page mobile breakpoint */
@media (max-width: 900px) {
  .tour-detail-space {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  .tour-detail-space .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  .tour-space-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .tour-space-main {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .tour-space-sidebar {
    display: none !important;
  }

  .space-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 16px 12px !important;
    border-radius: 14px !important;
    margin-bottom: 16px !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
  }

  .space-card-title {
    font-size: 1.12rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
  }

  .itinerary-timeline-v2 {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    gap: 0 !important;
  }

  .itinerary-timeline-v2::before {
    left: 22px !important;
  }

  .itinerary-day-box {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 14px 14px 14px 58px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    margin-bottom: 8px !important;
  }

  .itinerary-day-box::before {
    left: 5px !important;
    top: 14px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 0.62rem !important;
  }

  .itinerary-day-title {
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
  }

  .itinerary-day-desc {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    margin-top: 6px !important;
  }

  .inclusions-dual-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .inc-col-card {
    padding: 14px 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-tour-bottom-bar {
    display: flex !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    left: 0 !important;
    right: 0 !important;
  }

  /* Show mobile pricing card on small screens */
  .mob-pricing-card {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background: #FFFFFF !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 14px !important;
    padding: 16px 14px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  }

  .mob-pricing-card .custom-pricing-scroll-list {
    max-height: none !important;
    overflow-y: visible !important;
  }

  /* Show mobile price strip on small screens (if rendered) */
  .mob-price-strip {
    display: flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  .space-top-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .space-subnav {
    position: sticky;
    top: 45px;
    z-index: 990;
    margin-top: 10px;
    padding: 5px 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .space-subnav a {
    padding: 6px 12px;
    font-size: 0.76rem;
  }

  .space-card,
  [id^="sec-"] {
    scroll-margin-top: 105px;
  }

  .space-top-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
  }

  .btn-back-tours {
    padding: 6px 12px;
    font-size: 0.76rem;
    gap: 4px;
    flex-shrink: 0;
  }

  .space-breadcrumb {
    display: none;
  }

  .space-share-btn {
    padding: 6px 12px;
    font-size: 0.76rem;
    gap: 4px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* On mobile: hide WhatsApp share, show phone call */
  .space-share-desktop {
    display: none !important;
  }

  .space-share-mobile {
    display: inline-flex !important;
  }

  .space-hero {
    min-height: 260px;
    margin-top: 10px;
    border-radius: 14px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .space-hero-overlay {
    padding: 18px 14px 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0.92) 100%);
  }

  .space-hero-badges {
    display: none !important;
  }

  .space-hero-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }

  .space-hero-meta {
    font-size: 0.72rem;
    gap: 6px;
    color: #FEF3C7;
  }

  .space-subnav {
    position: sticky !important;
    top: 48px !important;
    z-index: 990 !important;
    margin-top: 10px;
    margin-bottom: 14px;
    margin-left: -12px !important;
    margin-right: -12px !important;
    padding: 8px 14px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid #E2E8F0 !important;
    border-bottom: 1px solid #E2E8F0 !important;
    border-left: none !important;
    border-right: none !important;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    width: calc(100% + 24px) !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
    scroll-behavior: smooth !important;
  }

  .space-subnav::-webkit-scrollbar {
    display: none;
  }

  .space-subnav a {
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    white-space: nowrap;
    transition: all 0.2s ease;
  }

  .space-card {
    padding: 16px 12px !important;
    border-radius: 14px !important;
    margin-bottom: 14px !important;
  }

  .space-card-title {
    font-size: 1.08rem !important;
    margin-bottom: 10px !important;
  }

  .space-lead-text {
    font-size: 0.84rem !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
  }

  .space-highlights-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .highlight-box-item {
    padding: 8px 10px !important;
    font-size: 0.8rem !important;
    border-radius: 8px !important;
  }

  .batches-section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .batches-month-tabs {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding-bottom: 2px !important;
    border-bottom: 1px solid #E2E8F0 !important;
    display: flex !important;
    gap: 4px !important;
  }

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

  .batch-month-tab {
    padding: 6px 12px 8px !important;
    font-size: 0.86rem !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

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

@media (max-width: 480px) {
  .space-hero {
    min-height: 240px;
  }

  .space-hero-title {
    font-size: 1.25rem;
  }

  .space-hero-meta {
    font-size: 0.68rem;
    gap: 4px;
  }
}

/* ============================================================
   TRIP GROUP PHOTOS / COMMUNITY GALLERY SECTION
   ============================================================ */
.simple-album-wrapper {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.simple-album-card {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  background: #0F172A;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  user-select: none;
}

.simple-album-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0F172A;
}

.album-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 5s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: opacity, transform;
}

.album-slide-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Hide arrows and counter per user request */
.simple-album-arrow,
.simple-album-counter {
  display: none !important;
}

/* Simple Navigation Dots */
.simple-album-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.simple-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.simple-dot.active {
  width: 24px;
  border-radius: 6px;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.35);
}

/* Responsive on mobile */
@media (max-width: 768px) {
  .simple-album-card {
    height: 360px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .simple-album-card {
    height: 290px;
    border-radius: 14px;
  }
}

/* Lightbox Modal */
.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
}

.gallery-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  background: #0F172A;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: lightboxZoomIn 0.2s ease-out;
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.7);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}

.gallery-lightbox-close:hover {
  background: #FF6B00;
  border-color: #FF6B00;
}

.gallery-lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.gallery-lightbox-caption {
  padding: 16px 20px;
  background: #0F172A;
  color: #FFFFFF;
}

.gallery-lightbox-caption h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.gallery-lightbox-meta {
  font-size: 0.85rem;
  color: #94A3B8;
}

@media (max-width: 640px) {
  .gallery-photos-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   Category rows.

   With no filter applied the tour grid becomes a stack of per-category
   sliders — Spiti Valley, Char Dham, Weekend Getaways — each scrolling
   horizontally. Applying a filter drops `.as-sections` and the original grid
   rules take over again, so nothing about the filtered view changes.
   ========================================================================== */

.tours-grid.as-sections {
  /* Override the grid; sections stack vertically. */
  display: block;
}

.tour-cat-section {
  margin-bottom: 44px;
}

.tour-cat-section:last-child {
  margin-bottom: 0;
}

.tour-cat-head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tour-cat-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0 auto;
}

.tour-cat-count {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

/* The arrows now reuse .slider-arrow (see the testimonials block above), so
   they sit centred on either side of the rail and share one definition. This
   only adds what is specific to the tour rails. */
.tour-rail-wrapper {
  position: relative;
  width: 100%;
}

.tour-rail-btn:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}

/* Nothing to page through when the row already fits; the class is applied by
   main.js once layout has settled. */
.tour-rail-wrapper.fits .slider-arrow {
  display: none;
}

/* The rail itself: one row, scrolls sideways, snaps to each card. */
.tour-cat-rail {
  display: grid;
  grid-auto-flow: column;
  /* Fixed, not 1fr: with a single tour in a category, 1fr stretched that one
     card across the entire rail and it no longer matched the other rows.
     A fixed track keeps every card identical however many are in the row. */
  grid-auto-columns: 345px;
  justify-content: start;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* Room for the cards' hover lift and shadow, which would otherwise clip. */
  padding: 4px 4px 18px;
  margin: -4px -4px -18px;
  /* Hidden, matching the testimonials slider — the arrows and swipe are the
     affordance, and a visible bar under every row was noisy. */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Never let a rail widen the page — it must scroll inside itself. */
.tours-grid.as-sections,
.tour-cat-section,
.tour-cat-rail {
  max-width: 100%;
  min-width: 0;
}

.tour-cat-rail>.tour-card {
  scroll-snap-align: start;
}

.tour-cat-rail::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .tour-cat-head {
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 14px !important;
  }

  .tour-cat-rail {
    grid-auto-columns: 46vw !important;
    gap: 10px !important;
    padding: 2px 2px 14px !important;
    margin: 0 !important;
  }

  .tour-cat-title {
    font-size: 1.15rem !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Touch devices swipe; the arrows are redundant there. */
  .tour-cat-nav {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tour-cat-rail {
    scroll-behavior: auto;
  }
}

/* The existing mobile block (max-width: 768px) turns .tours-grid into a
   horizontal flex scroller with !important. That is right for the flat grid,
   but in section mode the container holds <section> elements, not cards — it
   must stay a vertical stack and let each rail do its own scrolling. Matching
   !important is the only way to win against that rule. */
@media (max-width: 768px) {
  .tours-grid.as-sections {
    display: block !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* ---------------------------------------------------------------------
   GALLERY LIGHTBOX — SLIDESHOW CONTROLS
   Arrows, counter, autoplay toggle and the thumbnail strip that let a
   visitor walk a whole trip's photos without closing the lightbox.
   --------------------------------------------------------------------- */

.gallery-lightbox-stage {
  position: relative;
  line-height: 0;
}

.gallery-lightbox-counter {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(15, 23, 42, 0.78);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 35%;
  z-index: 2;
  background: rgba(15, 23, 42, 0.7);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.gallery-lightbox-nav.prev {
  left: 14px;
}

.gallery-lightbox-nav.next {
  right: 14px;
}

.gallery-lightbox-nav:hover {
  background: #FF6B00;
  border-color: #FF6B00;
}

/* Hidden rather than removed, so the image never reflows on a single photo. */
.gallery-lightbox-nav[hidden] {
  display: none;
}

.gallery-lightbox-play {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.gallery-lightbox-play:hover,
.gallery-lightbox-play.playing {
  background: #FF6B00;
  border-color: #FF6B00;
}

.gallery-lightbox-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.gallery-lightbox-thumbs:empty {
  display: none;
}

.gallery-lightbox-caption .gallery-lightbox-thumbs img {
  width: 62px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.gallery-lightbox-caption .gallery-lightbox-thumbs img:hover {
  opacity: 0.85;
}

.gallery-lightbox-caption .gallery-lightbox-thumbs img.active {
  opacity: 1;
  border-color: #FF6B00;
}

@media (max-width: 640px) {
  .gallery-lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .gallery-lightbox-nav.prev {
    left: 8px;
  }

  .gallery-lightbox-nav.next {
    right: 8px;
  }

  .gallery-lightbox-caption .gallery-lightbox-thumbs img {
    width: 52px;
    height: 38px;
  }
}

/* Keyboard skip link — off-screen until focused, so it costs sighted users
   nothing and saves keyboard users tabbing through the entire header. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: #FF6B00;
  color: #FFFFFF;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* ================= CELEBRATION MODE =================
   Confetti / emoji burst plus the announcement, switched on from the admin
   panel. See public/js/celebration.js and lib/celebration.ts. */

.it-celebration-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  /* The important line: without it this layer sits over every button on the
     site for the whole run. */
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.4s linear;
}

/* ---- the big pop-out ---- */

.it-celebration-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0);
  backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.it-celebration-overlay.is-in {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(3px);
}

.it-celebration-card {
  position: relative;
  width: min(92vw, 470px);
  background: #FFFFFF;
  border-radius: 26px;
  padding: 46px 34px 30px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.32);
  /* Starts small and low, then overshoots slightly on the way in — that
     overshoot is what makes it read as "pop" rather than "fade". */
  transform: scale(0.82) translateY(24px);
  opacity: 0;
  transition: transform 0.46s cubic-bezier(0.16, 1.36, 0.36, 1), opacity 0.3s ease;
}

.it-celebration-overlay.is-in .it-celebration-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* The emoji sits half outside the card, which is what stops the whole thing
   looking like a cookie notice. */
.it-celebration-badge {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B00 0%, #F59E0B 100%);
  box-shadow: 0 12px 26px rgba(234, 88, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  line-height: 1;
  animation: it-celebration-pulse 2.2s ease-in-out infinite;
}

@keyframes it-celebration-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
}

.it-celebration-title {
  margin: 10px 0 22px;
  font-size: clamp(1.2rem, 4.4vw, 1.6rem);
  font-weight: 800;
  line-height: 1.32;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.it-celebration-cta {
  display: block;
  width: 100%;
  padding: 15px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF6B00 0%, #F59E0B 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.34);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.it-celebration-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.42);
}

.it-celebration-dismiss {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  background: none;
  border: none;
  color: #64748B;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.it-celebration-dismiss:hover {
  color: #0F172A;
}

.it-celebration-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F1F5F9;
  color: #64748B;
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.it-celebration-x:hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* ---- the slim alternative ----
   Anchored to the BOTTOM. The previous version sat at the top and shared that
   space with the site's own sticky header, so on a narrow window it covered
   the navigation links. */

.it-celebration-ribbon {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 160%);
  z-index: 9999;
  max-width: min(92vw, 620px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF6B00 0%, #F59E0B 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 14px 34px rgba(234, 88, 12, 0.38);
  transition: transform 0.55s cubic-bezier(0.22, 1.2, 0.36, 1), opacity 0.4s ease;
  opacity: 0;
}

.it-celebration-ribbon.is-in {
  transform: translate(-50%, 0);
  opacity: 1;
}

.it-celebration-close {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  color: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.it-celebration-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .it-celebration-card { padding: 42px 22px 26px; border-radius: 22px; }
  .it-celebration-badge { width: 66px; height: 66px; font-size: 2rem; top: -32px; }
  .it-celebration-ribbon { font-size: 0.85rem; padding: 11px 14px 11px 18px; bottom: 14px; }
}

/* The message is the point; the movement is not. */
@media (prefers-reduced-motion: reduce) {
  .it-celebration-card {
    transition: opacity 0.2s ease;
    transform: none;
  }
  .it-celebration-overlay.is-in .it-celebration-card { transform: none; }
  .it-celebration-badge { animation: none; }
  .it-celebration-ribbon {
    transition: opacity 0.2s ease;
    transform: translate(-50%, 0);
  }
}

/* The two actions that replaced the custom-dates card in the batches section:
   the itinerary PDF and WhatsApp. Centred as a pair, and given room of their
   own now that there is no bordered card holding them. */
.tour-whatsapp-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tour-whatsapp-cta .btn-wa-custom,
.tour-whatsapp-cta .btn-itinerary-custom {
  font-size: 0.9rem;
  padding: 12px 24px;
}

/* Dark against the green, so the pair reads as secondary + primary rather
   than two competing buttons. The pale-red .btn-download-itinerary used in
   the itinerary section would clash next to the WhatsApp green. */
.btn-itinerary-custom {
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-itinerary-custom:hover {
  background: #FF6B00;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Stacked full-width on a phone — side by side they shrink to unreadable. */
@media (max-width: 640px) {
  .tour-whatsapp-cta {
    flex-direction: column;
    gap: 8px;
  }
  .tour-whatsapp-cta .btn-wa-custom,
  .tour-whatsapp-cta .btn-itinerary-custom {
    width: 100%;
    justify-content: center;
  }
}

/* The custom / private tour line under the two action buttons. */
.tour-custom-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.6;
}

.tour-custom-note a {
  color: #FF6B00;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1.5px solid rgba(255, 107, 0, 0.35);
  transition: border-color 0.15s ease;
}

.tour-custom-note a:hover {
  border-bottom-color: #FF6B00;
}

/* ==========================================================================
   YOUR PVT TRIPS (CUSTOM / PRIVATE GETAWAYS SHOWCASE - ORANGE THEME)
   Matches Go4Explore luxury destination card aesthetic (Image 1 & 2 reference)
   ========================================================================== */

.section-pvt-trips {
  background: linear-gradient(180deg, #FFFDFB 0%, #FFF8F1 100%);
  padding: 60px 0 68px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(254, 215, 170, 0.5);
  border-bottom: 1px solid rgba(254, 215, 170, 0.5);
}

.section-pvt-trips::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.09) 0%, rgba(249, 115, 22, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pvt-trips-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.pvt-trips-titles {
  max-width: 680px;
}

.pvt-sub-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(249, 115, 22, 0.15) 100%);
  color: #C2410C;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.pvt-sec-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 8px 0;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.5px;
}

.pvt-sec-desc {
  font-size: 0.96rem;
  color: #64748B;
  margin: 0;
  line-height: 1.6;
}

/* Slider Controls (Next / Prev Circular Arrows) */
.pvt-trips-nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pvt-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0F172A;
  color: #FFFFFF;
  border: 1.5px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.pvt-nav-arrow:hover {
  background: #FF6B00;
  border-color: #FF8533;
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.pvt-nav-arrow:active {
  transform: scale(0.95);
}

/* Horizontal Sliding Rail (1 Row Single Line Layout - Matching Standard Tour Card Size) */
.pvt-trips-rail-wrap {
  position: relative;
  z-index: 1;
  margin: 0 -4px;
  padding: 0 4px;
}

.pvt-trips-rail {
  display: grid;
  grid-template-rows: 380px;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 18px);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 26px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (max-width: 1024px) {
  .pvt-trips-rail {
    grid-auto-columns: calc(50% - 14px);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .pvt-trips-rail {
    grid-auto-columns: calc(86% - 10px);
    gap: 16px;
  }
}

.pvt-trips-rail::-webkit-scrollbar {
  display: none;
}

/* Luxury Pvt Trip Card (Matching First Screenshot Dimensions & Radius) */
.pvt-trip-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  width: 100%;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #0F172A;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pvt-trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 107, 0, 0.5);
}

.pvt-card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.pvt-trip-card:hover .pvt-card-bg-img {
  transform: scale(1.08);
}

.pvt-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.35) 45%, rgba(15, 23, 42, 0.92) 85%, #0B1120 100%);
  transition: background 0.3s ease;
  z-index: 1;
}

.pvt-trip-card:hover .pvt-card-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.3) 40%, rgba(15, 23, 42, 0.95) 80%, #0B1120 100%);
}

.pvt-card-top-row {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.pvt-badge-pill {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Translucent Glass Top-Right Arrow Circle (↗) */
.pvt-arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.pvt-trip-card:hover .pvt-arrow-circle {
  background: #FF6B00;
  border-color: #FFA066;
  color: #FFFFFF;
  transform: scale(1.15) rotate(45deg);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.pvt-card-body {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #FFFFFF;
}

.pvt-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 5px 0;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.pvt-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.pvt-card-price {
  font-size: 0.94rem;
  font-weight: 600;
  color: #E2E8F0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.pvt-card-price strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFA31A;
  margin-left: 2px;
}

.pvt-card-duration {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pvt-card-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.pvt-card-btn-callback {
  flex: 1;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
  border: none;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.pvt-card-btn-callback:hover {
  background: linear-gradient(135deg, #E05D00 0%, #C2410C 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(255, 107, 0, 0.5);
}

.pvt-card-btn-wa {
  padding: 9px 14px;
  border-radius: var(--radius-md);
  background: #25D366;
  border: none;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.pvt-card-btn-wa:hover {
  background: #1EB854;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(37, 211, 102, 0.5);
}

/* View All Pvt Trips Action Button */
.pvt-view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.btn-pvt-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #C2410C;
  border: 2px solid #EA580C;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.15);
}

.btn-pvt-view-all:hover {
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
  color: #FFFFFF;
  border-color: #FF6B00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
}

.btn-pvt-view-all svg {
  transition: transform 0.3s ease;
}

.btn-pvt-view-all:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   MORE PVT TRIPS (DESTINATION PACKAGES GRID - MATCHING IMAGE 2)
   ========================================================================== */

.pvt-more-sec {
  margin-top: 54px;
  padding-top: 46px;
  border-top: 1px dashed rgba(254, 215, 170, 0.85);
  position: relative;
  z-index: 1;
}

.pvt-more-header-row {
  margin-bottom: 24px;
}

.pvt-more-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px 0;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.4px;
}

.pvt-more-desc {
  font-size: 0.94rem;
  color: #64748B;
  margin: 0;
  line-height: 1.6;
}

.pvt-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 24px;
}

/* More Pvt Trip Card (Matching Image 2 Reference) */
.pvt-more-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0F172A;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pvt-more-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 107, 0, 0.55);
}

.pvt-more-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.pvt-more-card:hover .pvt-more-img {
  transform: scale(1.08);
}

.pvt-more-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.25) 45%, rgba(15, 23, 42, 0.92) 80%, #0B1120 100%);
  z-index: 1;
}

/* Orange & White Duration Pill (e.g. 6 Days 5 Nights) */
.pvt-more-duration-badge {
  position: absolute;
  right: 14px;
  bottom: 122px;
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  z-index: 2;
  letter-spacing: 0.2px;
}

.pvt-more-body {
  position: relative;
  z-index: 2;
  padding: 16px 16px 16px 16px;
  color: #FFFFFF;
}

.pvt-more-title-text {
  font-size: 1.22rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  font-family: 'Manrope', sans-serif;
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

.pvt-more-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}

.pvt-more-price-box {
  display: flex;
  flex-direction: column;
}

.pvt-more-price-val {
  font-size: 1.22rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
}

.pvt-more-price-sub {
  font-size: 0.72rem;
  color: #CBD5E1;
  font-weight: 600;
  margin-top: 2px;
}

.pvt-more-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pvt-more-btn-call {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pvt-more-btn-call:hover {
  background: #FF6B00;
  border-color: #FF8533;
  color: #FFFFFF;
  transform: scale(1.08);
}

.pvt-more-btn-details {
  padding: 7px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pvt-more-btn-details:hover {
  background: #FF6B00;
  border-color: #FF8533;
  color: #FFFFFF;
}

@media (max-width: 1200px) {
  .pvt-more-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .pvt-more-slider-rail {
    grid-auto-columns: calc(50% - 12px) !important;
    gap: 16px !important;
  }
}

@media (max-width: 860px) {
  .pvt-more-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .pvt-more-slider-rail {
    grid-auto-columns: calc(85% - 10px) !important;
    gap: 14px !important;
  }
}

@media (max-width: 580px) {
  .pvt-more-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom Private Trip Banner in Modal & Tour Detail */
.pvt-detail-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF7ED;
  color: #C2410C;
  border: 1.5px solid #FDBA74;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pvt-custom-dates-card {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1.5px solid #FED7AA;
  border-radius: 16px;
  padding: 24px 22px;
  margin-bottom: 20px;
}

.pvt-custom-dates-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pvt-custom-dates-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #FF6B00;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.pvt-custom-dates-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 3px 0;
}

.pvt-custom-dates-desc {
  font-size: 0.88rem;
  color: #4B5563;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.pvt-custom-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.pvt-custom-feature-item {
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #1F2937;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pvt-callback-action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-pvt-callback-yellow {
  background: #FF6B00;
  color: #FFFFFF;
  border: none;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
  flex: 1;
  min-width: 200px;
}

.btn-pvt-callback-yellow:hover {
  background: #E05D00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.btn-pvt-wa-green {
  background: #25D366;
  color: #FFFFFF;
  border: none;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-pvt-wa-green:hover {
  background: #1EB854;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Responsive adjustments for Your Pvt Trips (2 Rows) */
@media (max-width: 1024px) {
  .pvt-trips-rail {
    grid-auto-columns: calc(50% - 13px);
    grid-template-rows: repeat(2, 360px);
    gap: 20px;
  }
  .pvt-trip-card {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .section-pvt-trips {
    padding: 40px 0 48px 0;
  }
  .pvt-sec-title {
    font-size: 1.7rem;
  }
  .pvt-trips-rail {
    grid-auto-columns: calc(85% - 10px);
    grid-template-rows: repeat(2, 330px);
    gap: 16px;
  }
  .pvt-trip-card {
    height: 330px;
    border-radius: 14px;
  }
  .pvt-card-title {
    font-size: 1.35rem;
  }
  .pvt-card-body {
    padding: 16px;
  }
}


