body.booking-modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 40px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.74);
  backdrop-filter: blur(12px);
}

.booking-modal__dialog {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background: #f8fbff;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s var(--motion-ease);
}

.booking-modal.is-open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 36px) clamp(20px, 4vw, 40px) 0;
}

.booking-modal__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.booking-modal__eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #ff5e3a;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-modal__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  font-family: 'Unbounded', sans-serif;
  color: #0b1120;
  line-height: 105%;
  letter-spacing: 0;
}

.booking-modal__subtitle {
  max-width: 690px;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #64748b;
  line-height: 145%;
  letter-spacing: 0;
}

.booking-modal__title,
.booking-modal__subtitle,
.booking-modal__summary p,
.booking-room__name,
.booking-room__meta,
.booking-modal__selection {
  overflow-wrap: break-word;
}

.booking-modal__close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 17, 32, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #0b1120;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.booking-modal__close:hover {
  transform: rotate(90deg);
  background: #ff5e3a;
  color: #ffffff;
}

.booking-modal__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 40px) 0;
}

.booking-modal__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

.booking-modal__control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(11, 17, 32, 0.1);
  border-radius: 18px;
  background: #f8fbff;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-modal__control:focus-within {
  border-color: rgba(0, 87, 255, 0.48);
  background: #edf7ff;
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.1);
}

.booking-modal__control span {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #64748b;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-modal__control input,
.booking-modal__control select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0b1120;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 120%;
  letter-spacing: 0;
  cursor: pointer;
}

.booking-modal__refresh {
  align-self: stretch;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  background: #ff5e3a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 120%;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(255, 94, 58, 0.24);
  transition: transform 0.3s var(--motion-ease), box-shadow 0.3s ease, background-color 0.3s ease;
}

.booking-modal__refresh:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(255, 94, 58, 0.34);
}

.booking-modal__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0057FF, #0b1120);
  box-shadow: 0 22px 58px rgba(0, 87, 255, 0.25);
}

.booking-modal__summary span {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-modal__summary p {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  line-height: 140%;
  letter-spacing: 0;
}

.booking-modal__rooms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 40px);
}

.booking-room {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 17, 32, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(11, 17, 32, 0.1);
  transition: transform 0.35s var(--motion-ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-room:hover,
.booking-room.is-selected {
  transform: translateY(-8px);
  border-color: rgba(0, 87, 255, 0.48);
  box-shadow: var(--card-shadow-hover);
}

.booking-room__image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.booking-room__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.booking-room__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.booking-room__name {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #0b1120;
  line-height: 115%;
  letter-spacing: 0;
}

.booking-room__badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(56, 182, 255, 0.16);
  color: #0057FF;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}

.booking-room__meta {
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #64748b;
  line-height: 140%;
  letter-spacing: 0;
}

.booking-room__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-room__feature {
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf7ff;
  color: #0057FF;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}

.booking-room__bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.booking-room__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-room__price strong {
  color: #ff5e3a;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}

.booking-room__price span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}

.booking-room__button {
  flex: 0 0 auto;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: #0057FF;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.25s var(--motion-ease), background-color 0.25s ease;
}

.booking-room__button:hover,
.booking-room.is-selected .booking-room__button {
  transform: translateY(-2px);
  background: #ff5e3a;
}

.booking-modal__selection {
  margin: 0 clamp(20px, 4vw, 40px) clamp(22px, 4vw, 36px);
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 94, 58, 0.12);
  color: #0b1120;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 140%;
  letter-spacing: 0;
}

.booking-request-modal,
.booking-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 36px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-request-modal.is-open,
.booking-success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-request-modal__backdrop,
.booking-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.72);
  backdrop-filter: blur(12px);
}

.booking-request-modal__dialog,
.booking-success-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 26px;
  background: #f8fbff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(22px) scale(0.98);
  transition: transform 0.35s var(--motion-ease);
}

.booking-request-modal.is-open .booking-request-modal__dialog,
.booking-success-modal.is-open .booking-success-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-request-modal__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px) clamp(20px, 4vw, 34px) 0;
}

.booking-request-modal__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.booking-request-modal__eyebrow,
.booking-success-modal__eyebrow {
  color: #ff5e3a;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-request-modal__title,
.booking-success-modal__title {
  color: #0b1120;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  font-family: 'Unbounded', sans-serif;
  line-height: 110%;
  letter-spacing: 0;
}

.booking-request-modal__subtitle,
.booking-success-modal__text {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 145%;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.booking-request-modal__close,
.booking-success-modal__close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 17, 32, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #0b1120;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.booking-request-modal__close:hover,
.booking-success-modal__close:hover {
  transform: rotate(90deg);
  background: #ff5e3a;
  color: #ffffff;
}

.booking-request-modal__form {
  display: grid;
  gap: 16px;
  padding: 24px clamp(20px, 4vw, 34px) clamp(22px, 4vw, 34px);
}

.booking-request-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.booking-request-modal__field span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-request-modal__field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(11, 17, 32, 0.12);
  border-radius: 18px;
  outline: 0;
  background: #ffffff;
  color: #0b1120;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 120%;
  letter-spacing: 0;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-request-modal__field input:focus {
  border-color: rgba(0, 87, 255, 0.5);
  background: #edf7ff;
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.1);
}

.booking-request-modal__field input.is-invalid {
  border-color: rgba(255, 94, 58, 0.85);
  background: rgba(255, 94, 58, 0.08);
}

.booking-request-modal__error {
  min-height: 18px;
  color: #d93617;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 130%;
  letter-spacing: 0;
}

.booking-request-modal__form-error {
  min-height: 20px;
  color: #d93617;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 130%;
  letter-spacing: 0;
}

.booking-request-modal__submit {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: #0057FF;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 87, 255, 0.24);
  transition: transform 0.25s var(--motion-ease), background-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-request-modal__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.booking-request-modal__submit:hover {
  transform: translateY(-3px);
  background: #ff5e3a;
  box-shadow: 0 22px 48px rgba(255, 94, 58, 0.28);
}

.booking-request-modal__submit:disabled:hover {
  background: #0057FF;
  box-shadow: 0 18px 44px rgba(0, 87, 255, 0.24);
}

.booking-success-modal__dialog {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(26px, 5vw, 42px);
  text-align: center;
}

.booking-success-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

@media (min-width: 1441px) {
  .booking-modal__dialog {
    width: min(1320px, 100%);
  }

  .booking-modal__rooms {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-room__image {
    height: 210px;
  }
}

@media (max-width: 1280px) {
  .booking-modal {
    padding: 24px;
  }

  .booking-modal__dialog {
    width: min(1100px, 100%);
  }

  .booking-modal__form {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }

  .booking-modal__refresh {
    grid-column: 1 / -1;
    min-height: 52px;
  }

  .booking-modal__rooms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-room__image {
    height: 175px;
  }

  .booking-room__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-room__button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .booking-modal {
    padding: 18px;
  }

  .booking-modal__dialog {
    width: 100%;
  }

  .booking-modal__top {
    padding: 28px 28px 0;
  }

  .booking-modal__panel {
    grid-template-columns: 1fr;
    padding: 24px 28px 0;
  }

  .booking-modal__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .booking-modal__refresh {
    grid-column: 1 / -1;
    min-height: 52px;
  }

  .booking-modal__rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px 28px;
  }

  .booking-room__image {
    height: 220px;
  }

  .booking-room__bottom {
    align-items: center;
    flex-direction: row;
  }

  .booking-room__button {
    width: auto;
  }
}

@media (max-width: 768px) {
  .booking-modal {
    padding: 12px;
  }

  .booking-modal__dialog {
    max-height: calc(100dvh - 24px);
    border-radius: 22px;
  }

  .booking-modal__top {
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px 0;
  }

  .booking-modal__title {
    font-size: 2rem;
    line-height: 1.12;
  }

  .booking-modal__subtitle {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .booking-modal__panel {
    padding: 20px 20px 0;
  }

  .booking-modal__form {
    gap: 12px;
    padding: 14px;
  }

  .booking-modal__form,
  .booking-modal__rooms {
    grid-template-columns: 1fr;
  }

  .booking-modal__control {
    padding: 13px 14px;
  }

  .booking-modal__refresh {
    width: 100%;
    min-height: 54px;
  }

  .booking-modal__summary {
    padding: 18px;
  }

  .booking-modal__rooms {
    padding: 20px;
  }

  .booking-room__image {
    height: 220px;
  }

  .booking-room__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-room__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-room__button {
    width: 100%;
  }

  .booking-modal__selection {
    margin: 0 20px 22px;
  }
}

@media (max-width: 560px) {
  .booking-modal {
    padding: 0;
  }

  .booking-request-modal,
  .booking-success-modal {
    padding: 0;
  }

  .booking-modal__dialog {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .booking-request-modal__dialog,
  .booking-success-modal__dialog {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .booking-modal__top {
    gap: 14px;
    padding: 20px 16px 0;
  }

  .booking-request-modal__top {
    gap: 14px;
    padding: 22px 16px 0;
  }

  .booking-modal__title {
    font-size: 1.75rem;
  }

  .booking-request-modal__title,
  .booking-success-modal__title {
    font-size: 1.75rem;
  }

  .booking-modal__subtitle {
    display: none;
  }

  .booking-modal__close,
  .booking-request-modal__close {
    width: 42px;
    height: 42px;
  }

  .booking-request-modal__form {
    padding: 22px 16px;
  }

  .booking-modal__panel {
    padding: 20px 16px 0;
  }

  .booking-modal__form {
    border-radius: 20px;
  }

  .booking-modal__control {
    border-radius: 16px;
  }

  .booking-modal__rooms {
    padding: 20px 16px;
  }

  .booking-modal__selection {
    margin: 0 16px 20px;
  }

  .booking-room {
    border-radius: 20px;
  }

  .booking-room__image {
    height: 205px;
  }

  .booking-room__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-room__button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .booking-modal__top {
    padding: 16px 12px 0;
  }

  .booking-modal__title {
    font-size: 1.5rem;
  }

  .booking-modal__eyebrow,
  .booking-modal__control span,
  .booking-modal__summary span {
    font-size: 0.72rem;
  }

  .booking-modal__close {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .booking-modal__panel {
    padding: 16px 12px 0;
  }

  .booking-modal__form {
    padding: 12px;
    border-radius: 18px;
  }

  .booking-modal__control {
    padding: 11px 12px;
  }

  .booking-modal__control input,
  .booking-modal__control select,
  .booking-modal__summary p,
  .booking-modal__selection {
    font-size: 0.92rem;
  }

  .booking-modal__rooms {
    gap: 14px;
    padding: 16px 12px;
  }

  .booking-room__image {
    height: 180px;
  }

  .booking-room__body {
    gap: 14px;
    padding: 14px;
  }

  .booking-room__name,
  .booking-room__price strong {
    font-size: 1.08rem;
  }

  .booking-room__badge,
  .booking-room__feature,
  .booking-room__price span {
    font-size: 0.76rem;
  }

  .booking-modal__selection {
    margin: 0 12px 16px;
    padding: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) and (max-height: 820px) {
  .booking-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .booking-modal__dialog {
    max-height: calc(100dvh - 24px);
  }

  .booking-modal__top {
    padding-top: 20px;
  }

  .booking-modal__panel {
    padding-top: 18px;
  }

  .booking-modal__rooms {
    padding-block: 18px;
  }

  .booking-room__image {
    height: 170px;
  }
}

@media (min-width: 1025px) and (max-height: 760px) {
  .booking-modal {
    align-items: flex-start;
    padding: 12px 24px;
  }

  .booking-modal__dialog {
    max-height: calc(100dvh - 24px);
  }

  .booking-modal__top {
    padding-top: 20px;
  }

  .booking-modal__title {
    font-size: 2.4rem;
  }

  .booking-modal__subtitle {
    display: none;
  }

  .booking-modal__panel {
    padding-top: 18px;
  }

  .booking-modal__rooms {
    padding-block: 18px;
  }

  .booking-room__image {
    height: 150px;
  }

  .booking-room__body {
    gap: 12px;
    padding: 14px;
  }
}
