.bmh-booking-wrap {
  max-width: 800px;
  margin: 0 auto;
  color: #e8e8e8;
  font-family: Arial, Helvetica, sans-serif;
}

.bmh-booking-wrap form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.bmh-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.bmh-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bmh-field-full,
.bmh-payment-choice,
.bmh-agreements,
.bmh-form-message,
.bmh-terms-link {
  grid-column: 1 / -1;
}

.bmh-label {
  color: #e8e8e8;
  font-size: 13px;
  font-weight: 600;
}

.bmh-label span {
  color: #c9a84c;
}

.bmh-booking-wrap input,
.bmh-booking-wrap textarea,
.bmh-booking-wrap select {
  width: 100%;
  box-sizing: border-box;
  background: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #e8e8e8;
  padding: 13px 14px;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.bmh-booking-wrap textarea {
  min-height: 112px;
  resize: vertical;
}

.bmh-booking-wrap input:focus,
.bmh-booking-wrap select:focus,
.bmh-booking-wrap textarea:focus {
  border-color: rgba(201, 168, 76, 0.55);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.bmh-booking-wrap select option {
  background: #222;
  color: #e8e8e8;
}

.bmh-phone-wrap {
  display: flex;
  align-items: center;
  background: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
}

.bmh-phone-wrap input {
  border: none;
  background: transparent;
}

.bmh-phone-flag {
  padding-left: 12px;
  font-size: 18px;
}

.bmh-file-area {
  border: 1px dashed rgba(201, 168, 76, 0.65);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.07);
  cursor: pointer;
}

.bmh-file-area input {
  display: block;
  margin-top: 10px;
  background: transparent;
  border: none;
  padding: 0;
}

.bmh-upload-icon {
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.bmh-price-box {
  grid-column: 1 / -1;
  background: #222;
  border: 1px solid #c9a84c;
  border-radius: 6px;
  padding: 16px 20px;
}

.bmh-price-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 6px 0;
  color: #ccc;
  font-size: 14px;
  border-bottom: 1px solid #333;
}

.bmh-price-row:last-child {
  border-bottom: 0;
}

.bmh-price-total {
  color: #c9a84c;
  font-weight: bold;
  font-size: 16px;
}

.bmh-warning {
  grid-column: 1 / -1;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.1);
  border-left: 3px solid #c9a84c;
  padding: 10px 14px;
  border-radius: 4px;
}

.bmh-payment-choice {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  background: #202020;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 8px;
}

.bmh-payment-choice label {
  flex: 1 1 240px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8e8e8;
}

.bmh-payment-choice strong {
  color: #c9a84c;
}

.bmh-agreements {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #202020;
  border-radius: 8px;
  padding: 14px;
  color: #ddd;
  font-size: 13px;
}

.bmh-agreements label,
.bmh-radio-list label,
.bmh-check-single {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.bmh-booking-wrap input[type="checkbox"],
.bmh-booking-wrap input[type="radio"] {
  width: auto;
  accent-color: #c9a84c;
  margin-top: 2px;
}

.bmh-error {
  color: #ff6666;
  font-size: 12px;
  min-height: 14px;
}

.bmh-has-error input,
.bmh-has-error textarea,
.bmh-has-error select {
  border-color: #ff4444 !important;
}

.bmh-submit-btn {
  grid-column: 1 / -1;
  background: #c9a84c;
  color: #1a1a1a;
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: filter 0.18s, transform 0.18s;
}

.bmh-submit-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.bmh-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.bmh-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(26, 26, 26, 0.35);
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: bmhSpin 0.8s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

.bmh-submit-btn.is-loading .bmh-spinner {
  display: inline-block;
}

@keyframes bmhSpin {
  to { transform: rotate(360deg); }
}

.bmh-form-message {
  display: none;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 13px;
}

.bmh-form-message.bmh-form-error {
  display: block;
  background: rgba(255, 68, 68, 0.11);
  border: 1px solid rgba(255, 68, 68, 0.35);
  color: #ff8a8a;
}

.bmh-form-message.bmh-form-success {
  display: block;
  background: rgba(65, 180, 95, 0.11);
  border: 1px solid rgba(65, 180, 95, 0.35);
  color: #74d18d;
}

.flatpickr-calendar {
  background: #1f1f1f;
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.flatpickr-months,
.flatpickr-weekdays {
  background: #1a1a1a;
}

.flatpickr-current-month,
.flatpickr-monthDropdown-months,
.flatpickr-weekday {
  color: #c9a84c !important;
}

.flatpickr-day {
  color: #eee;
}

.flatpickr-day:hover,
.flatpickr-day.selected {
  background: #c9a84c !important;
  border-color: #c9a84c !important;
  color: #1a1a1a !important;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: #666 !important;
  background: #2b1414 !important;
  border-color: #3a1717 !important;
  cursor: not-allowed;
}

@media (max-width: 680px) {
  .bmh-booking-wrap form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bmh-payment-choice {
    display: block;
  }

  .bmh-payment-choice label + label {
    margin-top: 10px;
  }
}

/* Frontend readability and mobile responsiveness fixes */
.bmh-booking-wrap {
  width: 100%;
  max-width: min(800px, calc(100vw - 28px));
  box-sizing: border-box;
}

.bmh-booking-wrap form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  box-sizing: border-box;
}

.bmh-booking-wrap input,
.bmh-booking-wrap textarea,
.bmh-booking-wrap select {
  background-color: #2b2b2b;
  color: #f4f4f4;
  -webkit-text-fill-color: #f4f4f4;
  caret-color: #c9a84c;
}

.bmh-booking-wrap input::placeholder,
.bmh-booking-wrap textarea::placeholder {
  color: #b9b9b9;
  opacity: 1;
  -webkit-text-fill-color: #b9b9b9;
}

.bmh-booking-wrap select,
.bmh-booking-wrap select option,
.bmh-booking-wrap select optgroup {
  color: #f4f4f4;
  background-color: #2b2b2b;
  -webkit-text-fill-color: #f4f4f4;
}

.bmh-booking-wrap input:focus,
.bmh-booking-wrap textarea:focus,
.bmh-booking-wrap select:focus {
  background-color: #303030;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  border-color: rgba(201, 168, 76, 0.75);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}

.bmh-booking-wrap input:-webkit-autofill,
.bmh-booking-wrap input:-webkit-autofill:hover,
.bmh-booking-wrap input:-webkit-autofill:focus,
.bmh-booking-wrap textarea:-webkit-autofill,
.bmh-booking-wrap select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #303030 inset;
  box-shadow: 0 0 0 1000px #303030 inset;
  -webkit-text-fill-color: #ffffff;
  caret-color: #c9a84c;
}

@media (max-width: 782px) {
  .bmh-booking-wrap {
    max-width: calc(100vw - 20px);
  }
  .bmh-booking-wrap form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .bmh-field-wrap,
  .bmh-field-full,
  .bmh-payment-choice,
  .bmh-agreements,
  .bmh-price-box,
  .bmh-warning,
  .bmh-submit-btn,
  .bmh-form-message {
    grid-column: 1 / -1;
    min-width: 0;
  }
  .bmh-booking-wrap input,
  .bmh-booking-wrap textarea,
  .bmh-booking-wrap select {
    font-size: 16px;
    min-height: 48px;
  }
  .bmh-payment-choice {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .bmh-booking-wrap form {
    padding: 18px 12px;
  }
  .bmh-price-row {
    flex-direction: column;
    gap: 4px;
  }
}

/* Success popup after booking request */
.bmh-booking-wrap.is-success-blurred form {
  filter: blur(3px) brightness(.72);
  pointer-events: none;
  user-select: none;
}
.bmh-success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bmh-success-modal.is-visible {
  display: flex;
}
.bmh-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bmh-success-card {
  position: relative;
  width: min(460px, calc(100vw - 32px));
  background: #171717;
  border: 1px solid rgba(201,168,76,.45);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  padding: 30px 26px;
  text-align: center;
  color: #eaeaea;
}
.bmh-success-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #c9a84c;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.bmh-success-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  margin: 0 auto 16px;
  background: #c9a84c;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
}
.bmh-success-card h3 {
  margin: 0 0 12px;
  color: #c9a84c;
  font-size: 24px;
  line-height: 1.25;
}
.bmh-success-card p {
  margin: 0 0 12px;
  color: #e6e6e6;
  font-size: 15px;
  line-height: 1.65;
}
.bmh-success-card .bmh-success-small {
  color: #aaa;
  font-size: 13px;
}
.bmh-success-ok {
  margin-top: 12px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  background: #c9a84c;
  color: #111;
  font-weight: 800;
  cursor: pointer;
}


/* Package selector cards */
.bmh-package-section {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bmh-package-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.bmh-package-card {
  position: relative;
  display: block;
  border: 1px solid rgba(255,255,255,.14);
  background: #242424;
  border-radius: 10px;
  padding: 14px;
  color: #f4f4f4;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.bmh-package-card:hover,
.bmh-package-card.is-selected {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,.13);
  transform: translateY(-1px);
}
.bmh-package-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bmh-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.bmh-package-top strong {
  color: #fff;
  font-size: 15px;
}
.bmh-package-top em {
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  color: #111;
  background: #c9a84c;
  border-radius: 999px;
  padding: 5px 7px;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
}
.bmh-package-duration {
  display: block;
  color: #bbb;
  font-size: 13px;
  margin-bottom: 8px;
}
.bmh-package-price {
  display: block;
  color: #c9a84c;
  font-size: 18px;
  font-weight: 800;
}
.bmh-package-empty {
  margin: 0;
  color: #bbb;
}
@media (max-width: 680px) {
  .bmh-package-options {
    grid-template-columns: 1fr;
  }
}


/* Final select clipping fix */
.bmh-booking-wrap select {
  height: 48px !important;
  min-height: 48px !important;
  line-height: 22px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  vertical-align: middle !important;
  appearance: auto !important;
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  overflow: visible !important;
}
.bmh-booking-wrap select option {
  line-height: 24px !important;
}

/* Additional hours stepper */
.bmh-additional-hours {
  margin-top: 10px;
  padding: 14px;
  background: #202020;
  border: 1px solid rgba(201,168,76,.24);
  border-radius: 10px;
}
.bmh-additional-hours-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #f4f4f4;
  margin-bottom: 10px;
}
.bmh-additional-hours-head span {
  color: #c9a84c;
  font-size: 13px;
}
.bmh-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  overflow: hidden;
}
.bmh-stepper button {
  width: 42px;
  height: 42px;
  border: 0;
  background: #c9a84c;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}
.bmh-stepper input {
  width: 70px !important;
  height: 42px !important;
  min-height: 42px !important;
  text-align: center !important;
  border: 0 !important;
  border-left: 1px solid rgba(255,255,255,.12) !important;
  border-right: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 0 !important;
}
.bmh-additional-summary {
  margin: 10px 0 0;
  color: #cfcfcf;
  font-size: 13px;
}
