.booking {
  position: relative;
  padding: 5.5rem 0 5rem;
  background-color: #050505;
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  pointer-events: none;
  opacity: 0.35;
}

.booking .container {
  position: relative;
  z-index: 1;
  max-width: 88rem;
  padding: 0 2.5rem;
}

.booking__header {
  max-width: 54rem;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.booking__title {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.booking__title span {
  color: var(--accent);
}

.booking__subtitle {
  margin: 0;
  color: #97a1b5;
  font-size: 1.16rem;
  line-height: 1.75;
}

.booking__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  gap: 2rem;
  align-items: start;
}

/* FORM */
.booking-form {
  display: grid;
  gap: 1.2rem;
}

.booking-form__group {
  display: grid;
  gap: 0.55rem;
}

.booking-form__label {
  color: #9aa4b7;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 500;
}

.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.97rem;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.booking-form__input,
.booking-form__select {
  height: 3.35rem;
  padding: 0 1rem;
}

.booking-form__textarea {
  min-height: 8rem;
  padding: 0.95rem 1rem;
  resize: vertical;
  display: block;
}
.booking-form__select:invalid {
  color: #7f8aa0;
}

.booking-form__input::placeholder,
.booking-form__textarea::placeholder {
  color: #7f8aa0;
}

.booking-form__input:focus,
.booking-form__select:focus,
.booking-form__textarea:focus {
  border-color: rgba(212, 175, 79, 0.28);
  box-shadow: 0 0 0 1px rgba(212, 175, 79, 0.08);
}

.booking-form__select-wrap {
  position: relative;
}

.booking-form__select {
  appearance: none;
  cursor: pointer;
  padding: 0 2.8rem 0 1rem;
  color: #ffffff;
}

.booking-form__select option {
  color: #111111;
  background-color: #ffffff;
}

.booking-form__select option:disabled {
  color: #7f8aa0;
}

.booking-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  opacity: 0.85;
}

.booking-form__submit {
  height: 3.4rem;
  margin-top: 0.4rem;

  padding: 0 2rem; /* 🔥 головне */
  width: fit-content; /* 🔥 прибирає розтягування */

  border: 0;
  background: var(--accent);
  color: #111111;

  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.booking-form__submit svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-form__submit:hover {
  background-color: var(--accent-dark);
  transform: translateY(-0.1rem);
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.25);
}

/* RIGHT SIDE */
.booking__info {
  display: grid;
  gap: 1rem;
}

.booking__contacts-block {
  display: grid;
  gap: 0.85rem;
}

.booking__info-title {
  margin: 0 0 0.4rem;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;
}

.booking-contact,
.booking__hours,
.booking__note {
  background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.booking-contact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1rem;
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.booking-contact:hover {
  border-color: rgba(212, 175, 79, 0.32);
  box-shadow: 0 0 0 1px rgba(212, 175, 79, 0.08);
}

.booking-contact:hover .booking-contact__icon {
  border-color: rgba(212, 175, 79, 0.35);
  background: rgba(212, 175, 79, 0.12);
  color: var(--accent);
}

.booking-contact__icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 79, 0.08);
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--accent);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.booking-contact__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-contact__content {
  display: grid;
  gap: 0.2rem;
}

.booking-contact__label {
  color: #9aa4b7;
  font-size: 0.9rem;
  line-height: 1.35;
}

.booking-contact__value {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
}

.booking__contacts-block {
  margin-bottom: 1rem;
}

.booking__hours {
  padding: 1.35rem 1.2rem;
}

.booking__hours {
  margin-bottom: 1rem;
}

.booking__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #9aa4b7;
  font-size: 0.93rem;
  line-height: 1.5;
}

.booking__hours-row + .booking__hours-row {
  margin-top: 0.6rem;
}

.booking__hours-row strong {
  color: #ffffff;
  font-weight: 700;
}

.booking__note {
  padding: 1.15rem 1.2rem;
  border-color: rgba(212, 175, 79, 0.18);
  color: #ffffff;
  font-size: 0.93rem;
  line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 96rem) {
  .booking {
    padding: 5rem 0 4.75rem;
  }

  .booking__layout {
    gap: 1.7rem;
  }
}

@media (max-width: 75rem) {
  .booking__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 48rem) {
  .booking {
    padding: 4.25rem 0;
  }

  .booking .container {
    padding: 0 1rem;
  }

  .booking__header {
    margin-bottom: 2.4rem;
  }

  .booking__title {
  font-size: clamp(1.95rem, 7vw, 2.9rem);
}

  .booking__subtitle {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .booking-form__input,
  .booking-form__select {
    height: 3.2rem;
  }

  .booking-form__textarea {
    min-height: 7rem;
  }

  .booking-form__submit {
    width: 100%;
    height: 3.3rem;
    font-size: 0.94rem;
  }

  .booking-contact {
    padding: 0.9rem 0.9rem;
  }

  .booking-contact__icon {
    width: 2.8rem;
    height: 2.8rem;
    flex-basis: 2.8rem;
  }

  .booking-contact__icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .booking-contact__label,
  .booking-contact__value,
  .booking__hours-row,
  .booking__note {
    font-size: 0.9rem;
  }

  .booking__hours,
  .booking__note {
    padding: 1rem;
  }
}