/*
Custom Css
*/
/* WhatsApp Float Button - Responsive */
.whatsapp-float {
  position: fixed;
  bottom: 108px;
  right: 40px;
  background-color: #fafafa00;
  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: 42px;
  height: 42px;
  display: block;
}

@media (max-width: 991.98px) {
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    /* width: 40px;
    height: 40px; */
  }

  .whatsapp-float .whatsapp-icon {
    width: 34px;
    height: 34px;
  }
}

/* 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;
  }
}

@keyframes scrollCards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollStrip {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Adjustments */
@media(max-width:768px) {
  .scrolling-cards>div {
    min-width: 200px !important;
  }
}

.card-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.btn {
  background: #d35400;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #a63c00;
}

.btn.price {
  background: #25D366;
  /* WhatsApp green */
}

.btn.price i {
  margin-left: 6px;
}

/* Tour Inclusions List */
.tour-inclusions {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
  text-align: left;
}

.tour-inclusions li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tour-inclusions li i {
  color: #28a745;
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-inclusions li.highlight {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 3px solid #dc3545;
  font-weight: 600;
  color: #c92a2a;
}

.tour-inclusions li.highlight i {
  color: #dc3545;
}

/* Booking Modal Styles */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.booking-modal-content {
  background-color: #fff;
  margin: 3% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 550px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-modal-content h2 {
  color: #333;
  margin-bottom: 25px;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-modal-content h2 i {
  color: #25d366;
  font-size: 28px;
}

.booking-modal-close {
  color: #999;
  float: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}

.booking-modal-close:hover,
.booking-modal-close:focus {
  color: #333;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #25d366;
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.booking-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.booking-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.booking-submit-btn i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .booking-modal-content {
    margin: 10% auto;
    padding: 20px;
    width: 95%;
  }
  
  .booking-modal-content h2 {
    font-size: 20px;
  }
}