.lhh-booking-banner {
  position: relative;
  overflow: visible;
  padding: 80px 24px 150px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--lhh-accent-dark), var(--lhh-accent));
  color: #ffffff;
}

.lhh-booking-banner__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 560px);
  gap: 36px;
  align-items: start;
}

.lhh-booking-banner__copy {
  padding: 28px 0 0;
}

.lhh-booking-banner__eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lhh-booking-banner__copy h2 {
  margin: 20px 0 16px;
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lhh-booking-banner__copy p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.lhh-booking-banner__form {
  position: relative;
  margin-bottom: -96px;
}

.lhh-booking-form {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #1e2a44;
}

.lhh-booking-form__frame {
  background: #ffffff;
  border: 1px solid rgba(31, 58, 147, 0.12);
  border-radius: 28px;
  box-shadow: 0 32px 70px rgba(17, 33, 68, 0.15);
  overflow: hidden;
}

.lhh-booking-form[data-variant="standalone"] .lhh-booking-form__frame {
  max-width: 1240px;
  margin: 40px auto;
}

.lhh-booking-form__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 22px 0;
  background: #ffffff;
}

.lhh-booking-form__steps button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #d8e1f2;
  background: #f6f8fd;
  color: #42516e;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.lhh-booking-form__steps button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d8e1f2;
}

.lhh-booking-form__steps button.is-active {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.16), rgba(31, 58, 147, 0.08));
  border-color: rgba(255, 105, 180, 0.4);
  color: #122246;
}

.lhh-booking-form__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 0;
}

.lhh-booking-form__panels {
  padding: 26px 22px 26px;
}

.lhh-booking-form__panel-head {
  margin-bottom: 22px;
}

.lhh-booking-form__panel-head h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  font-size: 28px;
  color: #122246;
}

.lhh-booking-form__panel-head p {
  margin: 0;
  color: #5b6a86;
  line-height: 1.7;
}

.lhh-booking-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.lhh-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 220px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #dfe6f5;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lhh-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(20, 36, 69, 0.08);
}

.lhh-service-card.is-selected {
  border-color: rgba(255, 105, 180, 0.46);
  background: linear-gradient(180deg, rgba(255, 105, 180, 0.1), rgba(255, 255, 255, 1));
  box-shadow: 0 18px 34px rgba(255, 105, 180, 0.18);
}

.lhh-service-card__icon,
.lhh-extra-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.12), rgba(31, 58, 147, 0.12));
  color: var(--lhh-accent-dark);
  font-size: 28px;
}

.lhh-service-card__title {
  font-size: 18px;
  font-weight: 800;
  color: #122246;
}

.lhh-service-card__description,
.lhh-extra-card__text p {
  color: #63728d;
  line-height: 1.6;
  font-size: 14px;
}

.lhh-service-card__price {
  margin-top: auto;
  font-weight: 800;
  color: var(--lhh-accent-dark);
}

.lhh-booking-form__selectors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.lhh-booking-form__selectors label,
.lhh-booking-contact label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  color: #24314f;
}

.lhh-booking-form__selectors select,
.lhh-booking-contact input,
.lhh-booking-contact textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #d8e1f2;
  border-radius: 16px;
  background: #f9fbff;
  color: #122246;
  font: inherit;
}

.lhh-price-panel,
.lhh-booking-summary__inner {
  border-radius: 26px;
  background: linear-gradient(160deg, #0f1833, var(--lhh-accent-dark));
  color: #ffffff;
}

.lhh-price-panel {
  padding: 24px;
}

.lhh-price-panel__eyebrow,
.lhh-booking-summary__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.lhh-price-panel__value {
  margin: 14px 0 8px;
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.lhh-price-panel__note {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.lhh-booking-extras {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lhh-extra-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid #dfe6f5;
  border-radius: 22px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lhh-extra-card.is-selected {
  border-color: rgba(255, 105, 180, 0.42);
  box-shadow: 0 14px 32px rgba(255, 105, 180, 0.14);
  transform: translateY(-2px);
}

.lhh-extra-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}

.lhh-extra-card__text h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #122246;
}

.lhh-extra-card__price {
  margin-top: auto;
  font-weight: 800;
  color: var(--lhh-accent-dark);
}

.lhh-extra-card__controls {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 8px;
  align-items: center;
}

.lhh-extra-card__button,
.lhh-extra-card__toggle {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.lhh-extra-card__button {
  background: #eef2fb;
  color: #122246;
  font-size: 22px;
}

.lhh-extra-card.is-selected .lhh-extra-card__button:last-child,
.lhh-extra-card.is-selected .lhh-extra-card__toggle {
  background: linear-gradient(135deg, var(--lhh-accent), var(--lhh-accent-dark));
  color: #ffffff;
}

.lhh-extra-card__toggle {
  background: #eef2fb;
  color: #122246;
}

.lhh-extra-card__quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  background: #f6f8fd;
  color: #122246;
  font-weight: 800;
}

.lhh-booking-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lhh-booking-contact__wide {
  grid-column: 1 / -1;
}

.lhh-booking-summary {
  padding: 22px 22px 22px 0;
}

.lhh-booking-summary__inner {
  position: sticky;
  top: 24px;
  padding: 24px;
}

.lhh-booking-summary__inner h3 {
  margin: 14px 0 16px;
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  font-size: 28px;
  line-height: 1.08;
}

.lhh-booking-summary__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lhh-booking-summary__items li,
.lhh-booking-summary__totals div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.lhh-booking-summary__items strong,
.lhh-booking-summary__totals strong {
  font-weight: 800;
  color: #ffffff;
}

.lhh-booking-summary__totals {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lhh-booking-summary__grand {
  margin-top: 10px;
  font-size: 17px;
}

.lhh-booking-form__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 22px 22px;
}

.lhh-booking-form__primary,
.lhh-booking-form__secondary {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.lhh-booking-form__primary {
  background: linear-gradient(135deg, var(--lhh-accent), var(--lhh-accent-dark));
  color: #ffffff;
  margin-left: auto;
}

.lhh-booking-form__primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lhh-booking-form__secondary {
  background: #eef2fb;
  color: #122246;
}

.lhh-booking-form__feedback {
  min-height: 24px;
  padding: 0 22px 22px;
  color: #b42318;
  font-weight: 700;
}

.lhh-booking-modal[hidden] {
  display: none;
}

.lhh-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.lhh-booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 34, 0.58);
}

.lhh-booking-modal__dialog {
  position: relative;
  width: min(92vw, 520px);
  margin: 10vh auto 0;
  padding: 34px 28px 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 34px 72px rgba(15, 24, 51, 0.28);
  text-align: center;
}

.lhh-booking-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f3f6fc;
  color: #122246;
  font-size: 24px;
  cursor: pointer;
}

.lhh-booking-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.14), rgba(31, 58, 147, 0.16));
  color: var(--lhh-accent-dark);
  font-size: 34px;
}

.lhh-booking-modal__dialog h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  font-size: 28px;
  color: #122246;
}

.lhh-booking-modal__dialog p {
  margin: 0;
  color: #5b6a86;
  line-height: 1.7;
}

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

@media (max-width: 1100px) {
  .lhh-booking-banner__inner,
  .lhh-booking-form__content {
    grid-template-columns: 1fr;
  }

  .lhh-booking-banner__form {
    margin-bottom: -72px;
  }

  .lhh-booking-summary {
    padding: 0 22px 22px;
  }

  .lhh-booking-summary__inner {
    position: static;
  }

  .lhh-booking-services,
  .lhh-booking-extras {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .lhh-booking-banner {
    padding: 56px 16px 132px;
  }

  .lhh-booking-banner__copy h2 {
    font-size: 40px;
  }

  .lhh-booking-form__steps,
  .lhh-booking-form__panels,
  .lhh-booking-form__actions,
  .lhh-booking-form__feedback,
  .lhh-booking-summary {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lhh-booking-services,
  .lhh-booking-form__selectors,
  .lhh-booking-contact {
    grid-template-columns: 1fr;
  }

  .lhh-booking-extras {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lhh-extra-card__body {
    min-height: 0;
  }

  .lhh-booking-form__actions {
    flex-direction: column;
  }

  .lhh-booking-form__primary,
  .lhh-booking-form__secondary {
    width: 100%;
  }
}

/* Astra-safe hard overrides */
body .lhh-booking-banner,
body .lhh-booking-form,
body .lhh-booking-form * {
  box-sizing: border-box !important;
}

body .lhh-booking-banner {
  width: 100% !important;
  max-width: none !important;
  overflow: visible !important;
}

body .lhh-booking-banner__inner {
  width: min(100%, 1320px) !important;
  max-width: 1320px !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 1fr) minmax(680px, 760px) !important;
  gap: clamp(24px, 3vw, 48px) !important;
  align-items: start !important;
}

body .lhh-booking-banner__copy {
  max-width: 560px !important;
  padding: 34px 0 0 !important;
}

body .lhh-booking-banner__eyebrow,
body .lhh-booking-banner__copy h2,
body .lhh-booking-banner__copy p {
  color: #ffffff !important;
}

body .lhh-booking-banner__copy h2 {
  font-size: clamp(44px, 5vw, 72px) !important;
  line-height: 0.98 !important;
}

body .lhh-booking-banner__copy p {
  font-size: 18px !important;
  line-height: 1.7 !important;
  opacity: 0.96 !important;
}

body .lhh-booking-banner__form {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  margin-left: auto !important;
}

body .lhh-booking-form {
  width: 100% !important;
  max-width: none !important;
  color: #1e2a44 !important;
}

body .lhh-booking-form button,
body .lhh-booking-form select,
body .lhh-booking-form input,
body .lhh-booking-form textarea {
  font-family: "Manrope", "Segoe UI", sans-serif !important;
}

body .lhh-booking-form__frame {
  width: 100% !important;
  background: #ffffff !important;
  border: 1px solid rgba(203, 216, 242, 0.82) !important;
  border-radius: 30px !important;
  box-shadow: 0 30px 70px rgba(17, 33, 68, 0.14) !important;
  overflow: hidden !important;
}

body .lhh-booking-form[data-variant="standalone"] .lhh-booking-form__frame {
  max-width: 1520px !important;
  width: min(100%, 1520px) !important;
  margin: 36px auto !important;
}

body .lhh-booking-form__steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body .lhh-booking-form__steps button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-height: 74px !important;
  padding: 16px 20px !important;
  border: 1px solid #d6dff2 !important;
  border-radius: 20px !important;
  background: #f5f8fe !important;
  color: #284377 !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease !important;
}

body .lhh-booking-form__steps button span {
  color: #284377 !important;
}

body .lhh-booking-form__steps button:hover,
body .lhh-booking-form__steps button:focus-visible {
  border-color: rgba(255, 105, 180, 0.52) !important;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.14), rgba(255, 255, 255, 0.95)) !important;
  color: #10234c !important;
  box-shadow: 0 12px 28px rgba(255, 105, 180, 0.12) !important;
  transform: translateY(-1px) !important;
}

body .lhh-booking-form__steps button.is-active {
  border-color: rgba(255, 105, 180, 0.58) !important;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.18), rgba(255, 255, 255, 0.98)) !important;
  color: #10234c !important;
  box-shadow: 0 16px 34px rgba(255, 105, 180, 0.14) !important;
}

body .lhh-booking-form__content {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 0 !important;
}

body .lhh-booking-form[data-variant="banner"] .lhh-booking-form__content {
  grid-template-columns: 1fr !important;
}

body .lhh-booking-form__panels {
  min-width: 0 !important;
}

body .lhh-booking-form__panel-head h3 {
  color: #10234c !important;
}

body .lhh-booking-form__panel-head p {
  color: #5c6d8b !important;
}

body .lhh-booking-services,
body .lhh-booking-extras {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

body .lhh-booking-form[data-variant="banner"] .lhh-booking-services,
body .lhh-booking-form[data-variant="banner"] .lhh-booking-extras {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body .lhh-service-card,
body .lhh-extra-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 22px !important;
  border: 1px solid #dbe4f7 !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  color: inherit !important;
  text-align: left !important;
  box-shadow: 0 12px 30px rgba(15, 24, 51, 0.06) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease !important;
}

body .lhh-service-card:hover,
body .lhh-service-card:focus-visible,
body .lhh-extra-card:hover,
body .lhh-extra-card:focus-within {
  border-color: rgba(255, 105, 180, 0.46) !important;
  background: linear-gradient(180deg, rgba(255, 105, 180, 0.08), #ffffff 58%) !important;
  box-shadow: 0 18px 40px rgba(31, 58, 147, 0.12) !important;
  transform: translateY(-4px) !important;
}

body .lhh-service-card.is-selected,
body .lhh-extra-card.is-selected {
  border-color: rgba(255, 105, 180, 0.72) !important;
  background: linear-gradient(180deg, rgba(255, 105, 180, 0.12), #ffffff 62%) !important;
  box-shadow: 0 22px 44px rgba(255, 105, 180, 0.16) !important;
}

body .lhh-service-card__icon,
body .lhh-extra-card__icon {
  flex: 0 0 60px !important;
  width: 76px !important;
  height: 76px !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.12), rgba(31, 58, 147, 0.1)) !important;
  color: var(--lhh-accent-dark) !important;
}

body .lhh-service-card__title,
body .lhh-extra-card__text h4 {
  color: var(--lhh-accent-dark) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

body .lhh-service-card__description,
body .lhh-extra-card__text p {
  color: #5c6d8b !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

body .lhh-service-card__price,
body .lhh-extra-card__price {
  color: var(--lhh-accent-dark) !important;
  font-weight: 800 !important;
}

body .lhh-booking-form__selectors,
body .lhh-booking-contact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body .lhh-booking-form__selectors label,
body .lhh-booking-contact label {
  color: #10234c !important;
  font-weight: 700 !important;
}

body .lhh-booking-form__selectors select,
body .lhh-booking-contact input,
body .lhh-booking-contact textarea {
  width: 100% !important;
  min-height: 56px !important;
  height: auto !important;
  padding: 15px 18px !important;
  border: 1px solid #dbe4f7 !important;
  border-radius: 18px !important;
  background: #f8fbff !important;
  color: #10234c !important;
  box-shadow: none !important;
  outline: none !important;
}

body .lhh-booking-form__selectors select:hover,
body .lhh-booking-contact input:hover,
body .lhh-booking-contact textarea:hover,
body .lhh-booking-form__selectors select:focus,
body .lhh-booking-contact input:focus,
body .lhh-booking-contact textarea:focus {
  border-color: rgba(255, 105, 180, 0.48) !important;
  box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1) !important;
}

body .lhh-price-panel,
body .lhh-booking-summary__inner {
  background: linear-gradient(160deg, #12204f, #223b97) !important;
  color: #ffffff !important;
}

body .lhh-booking-summary {
  padding: 22px 22px 22px 0 !important;
}

body .lhh-booking-form[data-variant="banner"] .lhh-booking-summary {
  padding: 0 22px 22px !important;
}

body .lhh-booking-summary__inner {
  position: sticky !important;
  top: 24px !important;
}

body .lhh-booking-form[data-variant="banner"] .lhh-booking-summary__inner {
  position: static !important;
}

body .lhh-price-panel__eyebrow,
body .lhh-price-panel__value,
body .lhh-price-panel__note,
body .lhh-booking-summary__eyebrow,
body .lhh-booking-summary__inner h3,
body .lhh-booking-summary__items li,
body .lhh-booking-summary__items strong,
body .lhh-booking-summary__totals div,
body .lhh-booking-summary__totals strong {
  color: #ffffff !important;
}

body .lhh-booking-summary__inner h3 {
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 1.05 !important;
}

body .lhh-price-panel__value {
  font-size: clamp(36px, 4.8vw, 62px) !important;
  line-height: 0.98 !important;
}

body .lhh-booking-form__actions {
  align-items: center !important;
}

body .lhh-booking-form__primary,
body .lhh-booking-form__secondary {
  min-height: 58px !important;
  padding: 0 26px !important;
  border-radius: 18px !important;
  border: 0 !important;
  box-shadow: none !important;
}

body .lhh-booking-form__primary {
  background: linear-gradient(135deg, #f6b8d9, #9aa0ff) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 34px rgba(114, 128, 255, 0.26) !important;
}

body .lhh-booking-form__primary:hover,
body .lhh-booking-form__primary:focus-visible {
  background: linear-gradient(135deg, #ff9fd0, #7f8cff) !important;
  color: #ffffff !important;
  box-shadow: 0 22px 38px rgba(74, 93, 227, 0.28) !important;
  transform: translateY(-2px) !important;
}

body .lhh-booking-form__secondary {
  background: #eef3fd !important;
  color: #10234c !important;
}

body .lhh-booking-form__secondary:hover,
body .lhh-booking-form__secondary:focus-visible {
  background: #e2ebfb !important;
  color: #10234c !important;
}

body .lhh-extra-card__button,
body .lhh-extra-card__toggle {
  border-radius: 16px !important;
  box-shadow: none !important;
}

body .lhh-extra-card__button:hover,
body .lhh-extra-card__toggle:hover,
body .lhh-extra-card__button:focus-visible,
body .lhh-extra-card__toggle:focus-visible {
  transform: translateY(-1px) !important;
}

body .lhh-booking-form__feedback {
  color: #c21c46 !important;
}

@media (max-width: 1280px) {
  body .lhh-booking-banner__inner {
    grid-template-columns: 1fr !important;
  }

  body .lhh-booking-banner__copy,
  body .lhh-booking-banner__form {
    max-width: none !important;
    width: 100% !important;
  }

  body .lhh-booking-banner__form {
    margin-bottom: -72px !important;
  }
}

@media (max-width: 1024px) {
  body .lhh-booking-form__content,
  body .lhh-booking-form[data-variant="standalone"] .lhh-booking-form__content {
    grid-template-columns: 1fr !important;
  }

  body .lhh-booking-summary {
    padding: 0 22px 22px !important;
  }

  body .lhh-booking-summary__inner {
    position: static !important;
  }

  body .lhh-booking-services,
  body .lhh-booking-extras {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body .lhh-booking-form__steps,
  body .lhh-booking-services,
  body .lhh-booking-extras,
  body .lhh-booking-form__selectors,
  body .lhh-booking-contact {
    grid-template-columns: 1fr !important;
  }

  body .lhh-booking-banner {
    padding: 48px 16px 120px !important;
  }

  body .lhh-booking-banner__copy h2 {
    font-size: 40px !important;
  }

  body .lhh-booking-form__steps button {
    min-height: 62px !important;
  }
}
