/* ========== BOOKING WIDGET ========== */
.booking-widget {
  background: #f8f6f3;
  border-radius: 30px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .booking-widget {
    padding: 1.5vh 1.5vw 1.5vh 2.5vw;
    border-radius: 40px;
  }
}

.booking-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto;
  /* Floating effect handled by relative positioning since it's now a sibling */
  position: relative;
  top: calc(7.8vh / 2);
  background-image: url('/img/blur bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Removed CSS blur/gradient as requested */
  width: 39.6vw;
  height: 7.8vh;
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 20;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5vw;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s;
  cursor: pointer;
  flex: 1;
}

.chip:hover:not(.chip-active) {
  color: #fff;
}

.chip-active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.chip img {
  width: 18px;
  height: 18px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  padding-top: 2vh;
  background: #ff990000;
  margin-top: 1vh;
  height: 100%;
}

@media (min-width: 768px) {
  .booking-form {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-top: 0;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5vh;
  flex: 1;
  padding: 0.5vh 1.5vw;
}

@media (min-width: 768px) {
  .form-group {
    padding: 0.5vh 1.5vw;
  }
}

.form-group label {
  font-size: clamp(0.85rem, 2vmin, 0.95rem);
  font-weight: 600;
  color: #1a1a1a;
}

.form-group input {
  padding: 0;
  background: transparent;
  border: none;
  color: #888;
  font-size: 0.9rem;
}

.form-group input::placeholder {
  color: #999;
}

.form-group input:focus {
  outline: none;
}

.form-divider {
  display: none;
}

@media (min-width: 768px) {
  .form-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: #ddd;
    flex-shrink: 0;
  }
}

.form-group-guests {
  flex: 0 1 auto !important;
  min-width: 100px;
}

.btn-submit-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e0b973 0%, #a07d3a 100%);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
  margin-right: 15px;
}

.btn-submit-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1023px) {
  .booking-widget {
    padding: 4vh 5vw;
    border-radius: 40px;
    height: auto;
    min-height: 150px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .booking-tabs {
    width: 92% !important;
    /* FLUID WIDTH FOR GALAXY FOLD */
    max-width: 400px;
    height: auto;
    min-height: 50px;
    padding: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 5px;
    /* TIGHTER GAP */
    justify-content: center;
    scrollbar-width: none;
    margin: 0 auto -25px auto !important;
    /* OVERLAP THE FORM */
    position: relative;
    z-index: 30;
  }

  .booking-tabs::-webkit-scrollbar {
    display: none;
  }

  .chip {
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    /* FLUID FONT SIZE */
    padding: 0 10px;
    min-width: 0;
    /* ALLOW SHRINKING */
    height: 36px;
    flex: 1;
    /* EQUAL FLUID WIDTH */
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .booking-form {
    padding: 35px 10px 5px;
    /* INCREASED TOP PADDING FOR SPACE */
    gap: 15px;
  }

  .form-group {
    padding: 0;
    align-items: flex-start;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
  }

  .form-group:last-of-type {
    border-bottom: none;
  }

  .form-group label {
    font-size: 0.8rem;
    color: #1a1a1a;
    margin-bottom: 2px;
    font-weight: 700;
  }

  .form-group input {
    font-size: 1rem;
    text-align: left;
    color: #666;
    width: 100%;
  }

  .btn-submit-circle {
    width: 54px;
    height: 54px;
    margin: 10px auto 0;
  }
}