/* conatainer booking btn */
.btn-container {
  display: flex;
  gap: 15px; /* space between buttons */
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Solid Yellow */
.btn-solid {
  background: #111;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-solid:hover {
  background: #fff;
  color: #111;
}

/* Outline Yellow */
.btn-outline {
  background: transparent;
  border: 2px solid #111;
  color: #111;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
  border: 2px solid #fff;
}
@media (max-width: 767px) {
  .btn-container {
    flex-direction: column;
  }
}
/* === POPUP === */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === BOOKING FORM === */
#whatsapp-form {
  margin: 10px auto;
}

#whatsapp-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #111;
  position: relative;
}

#whatsapp-form label.required::after {
  content: "*";
  position: absolute;
  color: red;
  margin-left: 3px;
}

#whatsapp-form input,
#whatsapp-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline-color: #ffe8b4e2;
  color: #111;
}

#whatsapp-form button {
  margin-top: 15px;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#whatsapp-form button:hover {
  background-color: #1ebf57;
}

@media (max-width: 767px) {
  #whatsapp-form button {
    width: 100%;
  }
}
