@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #128C7E;
}
.main-menu .navbar-collapse .mobile-menu li ul {
  opacity: 1 !important;
  visibility: unset !important;
}
.main-menu .navbar-collapse li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  display: block;
}
.main-menu .navbar-collapse li ul li ul {
  top: -2% !important;
}

/* Slick slider */
.slick-dots {
  display: flex !important;
}

/* Custom Animations for Promo */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.floating-promo-banner {
  animation: slideInRight 0.6s ease-out;
}

/* Promo CTA Button Hover Effects */
.promo-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5) !important;
}

/* Floating animations */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

.float-animation-reverse {
  animation: float 4s ease-in-out infinite reverse;
}

/* Pulse animation */
.pulse-animation {
  animation: pulse 1s infinite;
}
.hot-deals-active .destination-item.style-four.no-border,
.product-slider .product-item {
  padding-left: 15px;
  padding-right: 15px;
}
.destination-active .slick-slide,
.gallery-slider-active .gallery-three-item {
  padding-left: 5px;
  padding-right: 5px;
}

.section-title p span span {
  background-color: transparent;
}

/* image popup */
/* img.mfp-img {
  box-shadow: 0 0 8px rgb(0 0 0 / 60%);
  position: absolute;
  max-height: 392px;
  padding: 0 !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mfp-img-container .mfp-close {
  top: -110px;
  right: -24px;
} */

/* Countdown Timer & CTA Animations */
@keyframes pulse {
  0% { 
    transform: scale(1); 
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
  }
  100% { 
    transform: scale(1); 
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  }
}

.countdown-timer {
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive countdown */
@media (max-width: 768px) {
  .promo-benefits {
    gap: 15px !important;
  }
  .promo-benefits > div {
    flex: 1;
    min-width: 80px;
  }
}

/* Enhanced Floating Animations */
.float-animation {
  animation: floatSmooth 6s ease-in-out infinite !important;
}

.float-animation-reverse {
  animation: floatSmoothReverse 8s ease-in-out infinite !important;
}

@keyframes floatSmooth {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.5;
  }
  25% { 
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.8; 
  }
  50% { 
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.6; 
  }
  75% { 
    transform: translateY(-15px) rotate(270deg);
    opacity: 0.7; 
  }
}

@keyframes floatSmoothReverse {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.3;
  }
  33% { 
    transform: translateY(15px) rotate(-120deg);
    opacity: 0.6; 
  }
  66% { 
    transform: translateY(-5px) rotate(-240deg);
    opacity: 0.4; 
  }
}

/* Promo banner hover effects */
.promo-banner:hover {
  transform: translateY(-5px) !important;
  transition: all 0.3s ease !important;
}

.promo-banner {
  transition: transform 0.3s ease !important;
}

.whatsapp-cta-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button {
    background-color: var(--whatsapp-green);
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: white;
    font-size: 16px;
    font-weight: 600;
    width: auto;
    height: auto;
    max-width: 280px;
    min-width: 60px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    animation-play-state: paused;
}

.whatsapp-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.whatsapp-text-main {
    font-size: 14px;
    font-weight: 700;
}

.whatsapp-text-sub {
    font-size: 12px;
    opacity: 0.9;
}

.close-button {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Mobile styles */
@media (max-width: 768px) {
    .whatsapp-button {
        border-radius: 50%;
        padding: 12px;
        gap: 0;
        width: 56px;
        height: 56px;
        max-width: 56px;
        min-width: 56px;
    }

    .whatsapp-icon {
        font-size: 28px;
    }

    .whatsapp-text {
        display: none;
    }

    .close-button {
        bottom: 85px;
        right: 28px;
    }
}

/* Animations */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Hidden state */
.hidden {
    display: none !important;
}