/* ========================================
   ESSENTIAL CSS - Nepal Lions Tours
   (Custom styles not available in Tailwind)
   ======================================== */

:root {
  --color-whatsapp: #25D366;
  --color-whatsapp-rgb: 37, 211, 102;
}

html {
  scroll-behavior: smooth;
}

/* ========================
   Preloader
   ======================== */
#wander-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}
.wander-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
  text-align: center;
}
.wander-icon-wrapper {
  margin-bottom: 12px;
  animation: wanderPulse 2.5s ease-in-out infinite;
}
.wander-brand {
  font-size: 26px;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.brand-highlight {
  color: #2D4739;
}
.wander-loading-box {
  width: 80%;
}
.wander-progress-bg {
  width: 100%;
  height: 3px;
  background: #f3f4f6;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.wander-progress-bar {
  width: 0%;
  height: 100%;
  background: #ea580c;
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}
.wander-caption {
  font-size: 15px;
  color: #2D4739;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-style: italic;
}
@keyframes wanderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}
@media (max-width: 640px) {
  #wander-preloader { height: 100dvh; }
  .wander-brand { font-size: 22px; }
  .wander-container { max-width: 240px; }
  .wander-caption { font-size: 11px; }
}

/* ========================
   Glass Card Components (Keep in CSS)
   ======================== */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card-shiny {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.1);
}

.glass-card-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Sticky Header - White BG with Dark Text */
.header-sticky {
  background: white !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-sticky .nav-link,
.header-sticky .dropdown-arrow {
  color: var(--color-pine-deep) !important;
}

.header-sticky input::placeholder {
  color: #94a3b8;
}

.header-sticky input {
  color: var(--color-pine-deep);
}

.header-sticky img {
  filter: brightness(0.7);
}

.header-sticky svg {
  color: var(--color-pine-deep) !important;
}

.header-sticky .whatsapp-ping svg {
  color: var(--color-whatsapp) !important;
}

.header-sticky [class*="border-white"] {
  border-color: #e2e8f0 !important;
}

.header-sticky .text-snow-white {
  color: var(--color-pine-deep) !important;
}

.header-sticky .text-snow-white\/70,
.header-sticky .text-snow-white\/80 {
  color: #475569 !important;
}

.header-sticky .text-sm {
  color: #475569 !important;
}

.header-sticky input::placeholder {
  color: #94a3b8 !important;
}

/* ========================
   Mobile Menu Styles
   ======================== */
.mobile-menu-container {
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-link {
  transition: all 0.2s ease;
}

.mobile-link:active {
  background-color: rgba(var(--color-emerald-rgb), 0.1);
}

.accordion-arrow {
  transition: transform 0.3s ease;
}

.rotate-180 {
  transform: rotate(180deg);
}

.accordion-content {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.mobile-accordion-btn:active {
  background-color: rgba(var(--color-emerald-rgb), 0.05);
}

/* Hide scrollbar but keep functionality */
.mobile-menu-container::-webkit-scrollbar {
  width: 0;
}

.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Sub-accordion styles */
.sub-arrow {
  transition: transform 0.3s ease;
}

/* ========================
   Animations
   ======================== */

/* WhatsApp Ping Animation */
@keyframes whatsapp-ping {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.whatsapp-ping {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.whatsapp-ping::before,
.whatsapp-ping::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(var(--color-whatsapp-rgb), 0.7);
  animation: whatsapp-ping 2s ease-out infinite;
}

.whatsapp-ping::after {
  animation-delay: 1s;
}

/* Ken Burns Zoom Effect */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.ken-burns {
  animation: kenBurns 8s ease-out forwards;
  transform: scale(1);
}

/* ========================
   Dropdown Styles
   ======================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--color-emerald);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
  padding: 12px 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Item - Copper Marker */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--color-pine-deep);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 70%;
  background: linear-gradient(180deg, var(--color-emerald), var(--color-jade));
  border-radius: 0 4px 4px 0;
  transition: transform 0.25s ease;
}

.nav-dropdown-item:hover {
  background: linear-gradient(90deg, rgba(var(--color-emerald-rgb), 0.04) 0%, transparent 100%);
  color: var(--color-emerald);
  padding-left: 24px;
}

.nav-dropdown-item:hover::before {
  transform: translateY(-50%) scaleY(1);
}

/* Dropdown Arrow Rotation */
.dropdown-arrow {
  margin-left: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  color: var(--color-emerald);
  transform: rotate(180deg);
}

/* Nav Link Underline */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-emerald), var(--color-jade));
  transition: width 0.3s ease;
}

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

/* ========================
   Mega Menu Styles
   ======================== */
.mega-dropdown {
  position: static;
}

.mega-menu-container {
  position: fixed;
  left: 0;
  top: 70px;
  transform: translateY(-15px);
  width: 100vw;
  z-index: 999;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mega-dropdown:hover .mega-menu-container,
.mega-dropdown:focus-within .mega-menu-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.mega-menu {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 3px solid var(--color-emerald);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 30px 40px;
}

.mega-menu-col {
  position: relative;
}

.mega-menu-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(180deg, transparent, #e5e5e5, transparent);
}

.mega-region-title {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-pine-deep);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--color-emerald);
  display: inline-block;
}

.mega-package-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-package-item {
  padding: 6px 0;
  padding-left: 14px;
  position: relative;
}

.mega-package-item::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--color-emerald);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
}

.mega-package-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.mega-package-item a {
  color: #4a5568;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.mega-package-item:hover a {
  color: var(--color-emerald);
  padding-left: 6px;
}

.mega-view-all {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  border: 1px solid var(--color-emerald);
  border-radius: 20px;
  color: var(--color-emerald);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mega-view-all:hover {
  background: var(--color-emerald);
  color: white;
}

.mega-menu-featured {
  grid-column: span 5;
  margin-top: 20px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--color-pine-deep) 0%, var(--color-pine) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.mega-featured-info h4 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.mega-featured-info p {
  font-size: 13px;
  margin: 0;
  opacity: 0.9;
}

.mega-featured-badges {
  display: flex;
  gap: 8px;
}

.mega-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.mega-badge-duration {
  background: rgba(255, 255, 255, 0.2);
}

.mega-badge-difficulty {
  background: var(--color-emerald);
}

.mega-badge-best {
  background: #25d366;
}

/* ========================
   Hero Slider Styles
   ======================== */
.hero-swiper {
  width: 100% !important;
  height: 100vh !important;
}

.hero-swiper .swiper-slide {
  height: 100% !important;
}

/* Slide Content Animation */
.slide-content {
  transform: translateX(-30px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.swiper-slide-active .slide-content {
  transform: translateX(0);
  opacity: 1;
}

/* Hide Swiper default navigation */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

/* ========================
   Button Fill Animation
   ======================== */
.hero-btn-fill {
  position: relative;
  overflow: hidden;
  background: var(--color-emerald);
  color: #ffffff !important;
  isolation: isolate;
}

.hero-btn-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-pine-deep);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.hero-btn-fill:hover::before {
  transform: translateX(0);
}

.hero-btn-fill:hover {
  color: #ffffff !important;
}

.hero-btn-fill span,
.hero-btn-fill svg {
  position: relative;
  z-index: 1;
}

/* ========================
   Mobile Mega Menu
   ======================== */
@media (max-width: 1023px) {
  .mobile-mega-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    color: var(--color-snow-white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
  }
  
  .mobile-mega-toggle svg {
    transition: transform 0.3s ease;
  }
  
  .mobile-mega-toggle.active svg {
    transform: rotate(180deg);
  }
  
  .mobile-mega-content {
    display: none;
    padding: 8px 0 16px 0;
  }
  
  .mobile-mega-toggle.active + .mobile-mega-content {
    display: block;
  }
  
  .mobile-region-col {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-region-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-emerald);
    margin-bottom: 8px;
  }
  
  .mobile-package-item a {
    display: block;
    padding: 6px 0;
    color: var(--color-snow-white);
    font-size: 13px;
    opacity: 0.8;
  }
}

/* ========================
   Counter Animation
   ======================== */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ========================
   Destinations Swiper Styles - Clean 3 Cards
   ======================== */
.destination-swiper {
  padding: 30px 0 50px;
  overflow: visible;
}

.destination-swiper .swiper-slide {
  height: auto;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* 3D Card Hover Effect */
.destination-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: perspective(1000px) rotateX(0deg);
  transform-style: preserve-3d;
}

.destination-card:hover {
  transform: perspective(1000px) rotateX(10deg) rotateY(-5deg) translateY(-20px) scale(1.05);
  filter: brightness(1.1);
  z-index: 10;
}

.destination-card:hover .destination-border {
  border-color: var(--color-emerald) !important;
  box-shadow: 
    0 0 35px rgba(var(--color-emerald-rgb), 0.6), 
    0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(var(--color-emerald-rgb), 0.2) !important;
}

.destination-card:hover .destination-img {
  transform: scale(1.15) !important;
}

/* Active card (center) - highlighted */
.destination-swiper .swiper-slide-active .destination-card {
  transform: perspective(1000px) translateY(-10px) scale(1.03);
}

.destination-swiper .swiper-slide-active .destination-border {
  border-color: var(--color-emerald) !important;
  box-shadow: 
    0 0 30px rgba(var(--color-emerald-rgb), 0.5), 
    0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Side cards - slightly toned down */
.destination-swiper .swiper-slide-prev .destination-card,
.destination-swiper .swiper-slide-next .destination-card {
  opacity: 0.85;
}

.destination-swiper .swiper-slide {
  height: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.destination-card {
  transform: translateY(0) rotateX(0);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.destination-card:hover {
  transform: translateY(-25px) rotateX(8deg) rotateY(5deg) scale(1.05) !important;
  z-index: 10;
}

.destination-border {
  transition: all 0.5s ease;
  border-width: 3px !important;
}

.destination-card:hover .destination-border {
  border-color: var(--color-emerald) !important;
  box-shadow: 
    0 0 40px rgba(var(--color-emerald-rgb), 0.6),
    0 0 80px rgba(var(--color-emerald-rgb), 0.3),
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 30px rgba(var(--color-emerald-rgb), 0.15) !important;
}

.destination-card:hover .destination-img {
  transform: scale(1.2) !important;
}

/* Dramatic Floating Animation */
@keyframes float1 {
  0%, 100% {
    transform: translateY(0px) rotateX(2deg);
  }
  50% {
    transform: translateY(-15px) rotateX(-2deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0px) rotateX(-2deg) rotateY(3deg);
  }
  50% {
    transform: translateY(-12px) rotateX(2deg) rotateY(-3deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg) rotateY(-2deg);
  }
  50% {
    transform: translateY(-18px) rotateX(3deg) rotateY(2deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translateY(0px) rotateX(-1deg) rotateY(2deg);
  }
  50% {
    transform: translateY(-10px) rotateX(1deg) rotateY(-3deg);
  }
}

.destination-card {
  animation: float1 5s ease-in-out infinite, glow-pulse 3s ease-in-out infinite;
}

.destination-card:nth-child(1) {
  animation-name: float1, glow-pulse;
}

.destination-card:nth-child(2) {
  animation-name: float2, glow-pulse-alt;
  animation-delay: -1.25s;
}

.destination-card:nth-child(3) {
  animation-name: float3, glow-pulse;
  animation-delay: -2.5s;
}

.destination-card:nth-child(4) {
  animation-name: float4, glow-pulse-alt;
  animation-delay: -3.75s;
}

@keyframes glow-pulse {
  0%, 100% {
    filter: drop-shadow(0 5px 15px rgba(var(--color-emerald-rgb), 0.2));
  }
  50% {
    filter: drop-shadow(0 20px 30px rgba(var(--color-emerald-rgb), 0.5));
  }
}

@keyframes glow-pulse-alt {
  0%, 100% {
    filter: drop-shadow(0 5px 10px rgba(var(--color-emerald-rgb), 0.15));
  }
  50% {
    filter: drop-shadow(0 15px 25px rgba(var(--color-emerald-rgb), 0.4));
  }
}

.destination-card:hover {
  animation: none !important;
  filter: drop-shadow(0 30px 50px rgba(var(--color-emerald-rgb), 0.6)) !important;
}

/* Active Slide - More Dramatic */
.destination-swiper .swiper-slide-active .destination-card {
  transform: scale(1.12) rotateX(-3deg) rotateY(-3deg) translateY(-10px) !important;
}

.destination-swiper .swiper-slide-active .destination-border {
  border-color: var(--color-emerald) !important;
  box-shadow: 
    0 0 50px rgba(var(--color-emerald-rgb), 0.7),
    0 0 100px rgba(var(--color-emerald-rgb), 0.35),
    0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

.destination-swiper .swiper-slide-active .destination-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: linear-gradient(45deg, var(--color-emerald), var(--color-emerald), var(--color-emerald), var(--color-emerald));
  background-size: 300% 300%;
  z-index: -1;
  animation: shimmer-bg 3s ease infinite;
}

@keyframes shimmer-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.destination-swiper .swiper-slide-active .destination-border {
  animation: active-glow 2s ease-in-out infinite;
}

@keyframes active-glow {
  0%, 100% {
    box-shadow: 
      0 0 40px rgba(var(--color-emerald-rgb), 0.5),
      0 0 80px rgba(var(--color-emerald-rgb), 0.25);
  }
  50% {
    box-shadow: 
      0 0 60px rgba(var(--color-emerald-rgb), 0.8),
      0 0 120px rgba(var(--color-emerald-rgb), 0.4);
  }
}

/* Neighboring slides - More visible */
.destination-swiper .swiper-slide-prev .destination-card,
.destination-swiper .swiper-slide-next .destination-card {
  transform: scale(0.88) translateY(20px) rotateX(5deg) !important;
  opacity: 0.5;
  filter: grayscale(30%);
}

.destination-pagination.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.destination-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.destination-pagination .swiper-pagination-bullet-active {
  background: var(--color-emerald);
  width: 30px;
  border-radius: 6px;
}


/* Hero Slider Dots */
.hero-swiper .dot {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 100 !important;
  cursor: pointer !important;
}

.hero-swiper .dot.active {
  background: var(--color-emerald) !important;
  border-color: var(--color-emerald) !important;
  box-shadow: 0 0 10px rgba(var(--color-emerald-rgb), 0.5) !important;
}

.hero-swiper .dot:not(.active) {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Premium 3D Destinations */
.premium-card {
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
  transform: translateY(-5px);
}

.destination-3d-swiper {
  overflow: hidden;
  padding: 20px 0;
}

.destination-3d-swiper .swiper-slide {
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.destination-3d-swiper .swiper-slide-active .premium-card {
  transform: scale(1.05);
  z-index: 10;
}

.destination-3d-nav-prev,
.destination-3d-nav-next {
  transition: all 0.3s ease;
}

.destination-3d-nav-prev:hover,
.destination-3d-nav-next:hover {
  transform: scale(1.1);
}

.destination-3d-nav-prev:hover {
  transform: translateX(4px) translateY(-50%);
}

.destination-3d-nav-next:hover {
  transform: translateX(-4px) translateY(-50%);
}

.destination-3d-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid #9ca3af;
  opacity: 1;
  transition: all 0.3s ease;
}

.destination-3d-pagination .swiper-pagination-bullet-active {
  background: var(--color-emerald);
  border-color: var(--color-emerald);
  width: 20px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(var(--color-emerald-rgb), 0.5);
}

@media (max-width: 768px) {
  .destination-3d-swiper .swiper-slide {
    width: 280px !important;
  }
  
  .premium-card img {
    height: 380px !important;
  }
}

/* Bhutan Packages Swiper - Simplified */
.bhutan-packages-swiper {
  overflow: hidden;
}

/* Bhutan Swiper Navigation Buttons */
.bhutan-swiper-prev,
.bhutan-swiper-next {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.bhutan-swiper-prev:hover,
.bhutan-swiper-next:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Bhutan Swiper Navigation Container */
.bhutan-swiper-nav-container {
  background: white;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Bhutan Swiper Pagination Dots */
.bhutan-swiper-pagination,
.bhutan-packages-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  text-align: center !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
}

.bhutan-swiper-pagination span,
.bhutan-packages-pagination span,
.bhutan-swiper-pagination .swiper-pagination-bullet,
.bhutan-packages-pagination .swiper-pagination-bullet {
  display: inline-block !important;
  width: 10px !important;
  height: 10px !important;
  background: #94a3b8 !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  flex-shrink: 0 !important;
}

.bhutan-swiper-pagination span.swiper-pagination-bullet-active,
.bhutan-packages-pagination span.swiper-pagination-bullet-active,
.bhutan-swiper-pagination .swiper-pagination-bullet-active,
.bhutan-packages-pagination .swiper-pagination-bullet-active {
  width: 32px !important;
  background: var(--color-emerald) !important;
  border-radius: 5px !important;
  box-shadow: 0 0 10px rgba(var(--color-emerald-rgb), 0.4);
  opacity: 1 !important;
}

/* Premium Package Cards - Unified Design */
.package-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card > div {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card:hover > div {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Staggered Animation Delays */
.package-card:nth-child(1) { transition-delay: 0s; }
.package-card:nth-child(2) { transition-delay: 0.1s; }
.package-card:nth-child(3) { transition-delay: 0.2s; }
.package-card:nth-child(4) { transition-delay: 0.3s; }
.package-card:nth-child(5) { transition-delay: 0.4s; }
.package-card:nth-child(6) { transition-delay: 0.5s; }

@media (max-width: 768px) {
  .package-card:nth-child(2),
  .package-card:nth-child(4),
  .package-card:nth-child(6) { transition-delay: 0s; }
  
  .package-card:nth-child(1),
  .package-card:nth-child(3),
  .package-card:nth-child(5) { transition-delay: 0.1s; }
}

/* Modern Swiper */

/* ========================
   Premium Package Card - Image Gradient Blend
   ======================== */
.package-card .card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.package-card .card-image-wrap img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card:hover .card-image-wrap img {
  transform: scale(1.03);
}

.package-card .card-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    var(--color-snow-white) 0%,
    rgba(247, 250, 252, 0.85) 30%,
    rgba(247, 250, 252, 0.4) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Card inner handles overflow for rounded corners */
.package-card .card-inner {
  overflow: hidden;
}

/* Premium Icons */
.package-card .icon-premium {
  stroke: var(--color-emerald);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card hover - smoother lift */
.package-card:hover .card-inner {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* FAQ Accordion - CSS Grid Smooth Animation */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-btn.active .faq-icon {
  transform: rotate(45deg);
}

.faq-btn.active .text-pine-deep {
  color: var(--color-emerald);
}

/* Why Choose Us - Bento Grid */
.bento-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-large {
    grid-column: span 1 !important;
  }
}

.bento-card .bento-large {
  grid-column: span 2;
}

.bento-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bento-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ========================
   Search Modal Animations
   ======================== */
#search-modal {
  animation: modalFadeIn 0.2s ease;
}

#search-modal > div {
  animation: modalScaleIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalScaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ========================
   WhatsApp Online Dot
   ======================== */
.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  animation: onlineBreath 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(var(--color-whatsapp-rgb), 0.6);
}

@keyframes onlineBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ========================
   Contact Form Styles
   ======================== */
.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  color: var(--color-pine-deep);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.contact-input:focus {
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(var(--color-emerald-rgb), 0.15);
}

.contact-input::placeholder {
  color: #9ca3af;
}

textarea.contact-input {
  resize: vertical;
  min-height: 120px;
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-pine-deep);
  margin-bottom: 0.5rem;
}

.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23059669'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.contact-submit-btn {
  position: relative;
  overflow: hidden;
  background: var(--color-emerald);
  color: white;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.contact-submit-btn:hover {
  background: var(--color-pine-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--color-emerald-rgb), 0.3);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-info-card {
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(var(--color-emerald-rgb), 0.15);
}

/* ========================
   Package Filter Select
   ======================== */
.filter-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* ========================
   Package Card Entrance Animation
   ======================== */
.animate-entrance {
  animation: fadeInScale 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

