/*
Custom Css
*/
/* WhatsApp Float Button - Responsive */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  padding: 0;
  z-index: 10010;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float .whatsapp-icon {
  width: 32px;
  height: 32px;
  display: block;
}

@media (max-width: 991.98px) {
  .whatsapp-float {
    bottom: 70px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .whatsapp-float .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}

/* Back to Top Arrow - Responsive */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px; /* Space to the left of WhatsApp icon */
  z-index: 10005;
  background: #f15d30;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: opacity 0.3s;
  opacity: 0.85;
  text-decoration: none;
}

#back-to-top:hover {
  background: #d94c0b;
  opacity: 1;
}

@media (max-width: 991.98px) {
  #back-to-top {
    width: 40px;
    height: 40px;
    font-size: 20px;
    bottom: 20px;
    right: 20px; /* Keep left of WhatsApp icon on mobile */
  }
}

/* WhatsApp Chat Now Bubble */
.whatsapp-chat-bubble {
  position: fixed;
  right: 90px;
  bottom: 110px;
  background: #25d366;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px 20px 0 20px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 10009;
  opacity: 0.97;
  display: flex;
  align-items: center;
  pointer-events: none;
  user-select: none;
  animation: whatsapp-bounce-in 0.7s;
  transition: opacity 0.3s;
}

.whatsapp-chat-bubble::after {
  content: '';
  position: absolute;
  right: -12px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 12px solid #25d366;
  border-right: 12px solid transparent;
}

@media (max-width: 991.98px) {
  .whatsapp-chat-bubble {
    right: 60px;
    bottom: 80px;
    font-size: 13px;
    padding: 6px 12px;
  }
  .whatsapp-chat-bubble::after {
    right: -10px;
    border-top-width: 10px;
    border-right-width: 10px;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-chat-bubble {
    right: 60px;
    bottom: 85px;
    font-size: 12px;
    padding: 5px 8px;
  }
  .whatsapp-chat-bubble::after {
    right: -7px;
    border-top-width: 7px;
    border-right-width: 7px;
  }
}

@keyframes whatsapp-bounce-in {
  0% { transform: translateY(40px) scale(0.8); opacity: 0; }
  60% { transform: translateY(-10px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.97; }
}

  /* Combo Packages */
    .combo {
        background: #fff8ef;
        padding: 60px 20px;
        text-align: center;
    }

    .combo h2 {
        font-size: 32px;
        color: #3e2614;
        margin-bottom: 20px;
    }

    .combo-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .combo-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .combo-card h4 {
        color: #3e2614;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .combo-card p {
        font-size: 16px;
        color: #555;
    }
     /* Responsive */
    @media(max-width:768px){
        .hero h1 { font-size: 36px; }
        .about h2, .features h2, .highlights h2, .combo h2 { font-size: 26px; }
    }
    
    .booking-form-container {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.booking-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.booking-form-container input,
.booking-form-container textarea,
.booking-form-container button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.booking-form-container button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.booking-form-container button:hover {
    background-color: #0056b3;
}

