.booking-section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 56px);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 232, 166, 0.22), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f3f7f4 100%);
}

.booking-section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.booking-section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.booking-section h2 {
  margin: 0;
  color: #1f6f43;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.booking-section__heading p:not(.eyebrow) {
  max-width: 650px;
  color: #607066;
  font-size: 1.04rem;
}

.booking-scan-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.booking-scan-guide article {
  min-height: 170px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #d9e8de;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(37, 50, 43, 0.05);
}

.booking-scan-guide span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: #ffffff;
  background: #1f6f43;
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.booking-scan-guide h3 {
  margin: 0 0 8px;
  color: #25322b;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
}

.booking-scan-guide p {
  margin: 0;
  color: #607066;
  font-size: 0.94rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 380px);
  gap: 18px;
  align-items: start;
}

.booking-form,
.booking-summary {
  background: #ffffff;
  border: 1px solid #d9e8de;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(37, 50, 43, 0.06);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.booking-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form__field {
  display: grid;
  gap: 7px;
}

.booking-form label,
.booking-summary dt {
  color: #25322b;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: #25322b;
  background: #fbfcfa;
  border: 1px solid #cfe2d5;
  border-radius: 8px;
  font: inherit;
}

.booking-form input[type="file"] {
  min-height: auto;
  padding: 14px;
  color: #25322b;
  background: #ffffff;
  border-style: dashed;
}

.booking-form__field--file label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.booking-form__field--file label span {
  color: #607066;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form__hint {
  margin: 0;
  color: #607066;
  font-size: 0.92rem;
}

.smile-capture-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.smile-capture-guide span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: #1f6f43;
  background: #eaf7ef;
  border: 1px solid #d9e8de;
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
}

.booking-form__files {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.booking-form__files li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  color: #25322b;
  background: #eaf7ef;
  border-radius: 8px;
  font-size: 0.92rem;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #3baa5d;
  outline: 3px solid rgba(59, 170, 93, 0.18);
}

.booking-form select:disabled {
  color: #7b8b80;
  cursor: not-allowed;
  background: #eef2ef;
}

.booking-form__privacy {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 500;
}

.booking-form__privacy input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: #3baa5d;
}

.booking-form__privacy--media {
  padding: 12px;
  background: #fbfcfa;
  border: 1px solid #d9e8de;
  border-radius: 8px;
}

.booking-form__submit {
  min-height: 52px;
  padding: 13px 18px;
  color: #ffffff;
  background: #3baa5d;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.booking-form__submit:hover,
.booking-form__submit:focus-visible {
  background: #1f6f43;
  outline: none;
  transform: translateY(-1px);
}

.booking-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.booking-form__message {
  min-height: 24px;
  margin: 0;
  color: #1f6f43;
  font-weight: 700;
}

.booking-form__message.is-error {
  color: #9f2f27;
}

.booking-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-summary {
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #eaf7ef 100%);
}

.scan-suggestion {
  display: grid;
  gap: 10px;
  padding: 18px;
  margin-bottom: 22px;
  color: #ffffff;
  background: #1f6f43;
  border-radius: 8px;
}

.scan-suggestion > span {
  color: #ffe8a6;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scan-suggestion h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
}

.scan-suggestion p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.scan-suggestion ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.scan-suggestion li {
  padding: 6px 9px;
  color: #1f6f43;
  background: #ffffff;
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
}

.scan-suggestion__note {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.booking-summary h3 {
  margin: 0 0 18px;
  color: #1f6f43;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.booking-summary .scan-suggestion h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
}

.booking-summary dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.booking-summary dt {
  margin-bottom: 4px;
}

.booking-summary dd {
  margin: 0;
  color: #607066;
}

.booking-summary a {
  color: #1f6f43;
  text-decoration-color: #3baa5d;
  text-underline-offset: 4px;
}

@media (max-width: 860px) {
  .booking-layout,
  .booking-form__row,
  .booking-scan-guide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) and (min-width: 861px) {
  .booking-scan-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .booking-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
