.booking-tag {
  width: 260px;
  height: 35px;
  gap: 5px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  justify-content: start;
  padding: 0 0 0 5px;
  font-size: var(--small);
  font-weight: 500;
}

.booking-tags {
  margin: 10px 0;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.msg {
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.msg-img {
  width: 100%;
  max-width: 658px;
  height: auto;
  display: block;
}

.bookingform {
  width: 100%;
  max-width: 550px;
  align-items: start;

  & h3 {
    font-weight: 600;
    font-size: var(--fs-section-subtitle-lg);
  }

  & p {
    margin-top: 21px;
    margin-bottom: 46px;
  }
}

input,
select{
    width:100%;
    min-width:0;

    height:50px !important;
    min-height:50px !important;

    padding:0 15px;

    border:1px solid var(--text-mid-light);
    border-radius:var(--radius-md);

    background-color:var(--bg);
    color:var(--text-light);

    font-size:var(--fs-body);

    box-sizing:border-box;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

input:hover,
select:hover {
  border-color: var(--text-light);
}

input:focus,
select:focus {
  border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(95, 169, 46, 0.15);
}

select {
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full {
  width: 100%;
}

.left {
  flex: 1;
}

.right {
  flex: 1;
}

.form-left-gap {
  width: 100%;
  gap: 28px;
  display: flex;
}

.input-box {
  gap: 18px;
}

textarea {
    width: 100%;
    min-width: 0;

    min-height: 130px;

    padding: 15px;

    border: 1px solid var(--text-mid-light);
    border-radius: var(--radius-md);

    background-color: var(--bg);
    color: var(--text-light);

    font-family: inherit;
    font-size: var(--fs-body);
    line-height: 1.6;

    box-sizing: border-box;

    resize: vertical;
    outline: none;

    transition: all 0.3s ease;
}

textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

textarea:hover {
    border-color: var(--text-light);
}

textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(95, 169, 46, 0.15);
}

.book-btn {
  width: 206px;
  height: 45px;
  border: none;
  cursor: pointer;
  margin-top: 50px;
  font-size: var(--fs-section-subtitle-sm);
}

@media (max-width: 1024px) {
  .msg {
    position: relative;
    justify-content: center;
    align-items: center;
    min-height: 700px;
  }

  .msg-img {
    display: none;
  }

  .bookingform {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    padding: 35px;
    backdrop-filter: blur(0px);
  }
}

@media (max-width: 425px) {

  .msg{
    min-height: 600px;
  }

  input,
  select {
    height: 50px !important;
    min-height: 50px !important;
    font-size: var(--fs-small-sm);
  }

  .booking .section-heading {
    text-align: center;
  }

  .booking-tag {
    width: 100%;
    max-width: 320px;
  }

  .bookingform h3{
    margin-bottom: 10px;
  }

  .bookingform p {
    display: none;
  }


  .form-left-gap {
    /* flex-direction: column; */
    gap: 18px;
  }

  .bookingform {
    justify-content: center;
    align-items: center;
    padding: 25px;
  }

  .book-btn {
    width: 100%;
    margin-top: 25px;
  }
}
