      
.booking-form {
  width: 100%;
  max-width: 490px;
  background: #fff;
  /* border: 2px solid #d19f68; */
  /* border-radius: 4px; */
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.iti {
    width: 100%;
}

@media only screen and (max-width: 767px) {
  .Container1Mobile {
    margin-top: 173px; /* ajuste la valeur à ton besoin */
  }
}
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block;
  font-weight: bold;
  color: #333;
  font-size: 14px;
  margin-bottom: 0px;
}
.form-group input {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
  color: #333;
}
.toggle {
  display: flex;
  border: 1px solid #d19f68;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}
.toggle .option {
  flex: 1;
}
.toggle .option input {
  display: none;
}
.toggle .option span {
  display: block;
  text-align: center;
  padding: 10px 0;
  background: #fff;
  color: #d19f68;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}
.toggle .option:not(:last-child) span {
  border-right: 1px solid #d19f68;
}

.btn2Style {
  background: #088f25;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  padding: 27px 44px;
  color: #ffff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  border-radius: 30px;
  line-height: 1;
  -moz-user-select: none;
  letter-spacing: 1px;
  line-height: 0;
  margin-bottom: 0;
  margin: 10px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  border: 0;
  overflow: hidden;
  margin: 0;
}
.btn2Style::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 101%;
  background: #05651a;
  z-index: 1;
  border-radius: 30px;
  transition: transform 0.5s;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0);
  border-radius: 0px;
}
.btn2Style:hover::before {
  transform: scaleX(1);
  color: #fff !important;
  z-index: -1;
}
.btn2Style:hover {
  background-position: right;
}
.btn2Style.focus,
.btn2Style:focus {
  outline: 0;
  box-shadow: none;
}


.toggle .option input:checked + span {
  background: #d19f68;
  color: #fff;
}
.date-input { margin-bottom: 15px; }
.date-input input {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
  color: #333;
}
.return-group { display: none; }
.booking-form button {
  width: 100%;
  padding: 12px;
  background: #d19f68;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}
.error {
  color: #c00;
  font-size: 13px;
  margin-top: 5px;
}
.success {
  background: #e6ffed;
  border: 1px solid #2f8f3e;
  color: #2f8f3e;
  padding: 10px;
  border-radius: 2px;
  margin-top: 10px;
  white-space: pre-wrap;
  font-family: monospace;
  font-size: 14px;
}
 
  /* Overlay semi-transparent */
  .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease;
  }
  .popup-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  /* Contenu de la popup */
  .popup-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 6px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .popup-message {
    color: #000000;
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* Bouton de fermeture */
  .popup-btn {
    background: #d19f68;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
  }
  .popup-btn:hover {
    opacity: 0.9;
  }




  