.bh-section,
.bh-section * {
  box-sizing: border-box;
}

.bh-section {
  --bh-accent: #b58a45;
  --bh-background-colour: rgba(0, 0, 0, 0.48);
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 520px;
  padding: clamp(42px, 6vw, 90px) 20px;
  background-position: center;
  background-size: cover;
  color: #050505;
  font-family: inherit;
}

.bh-section-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bh-background-colour);
  backdrop-filter: blur(1px);
}

.bh-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.bh-cards,
.bh-forms-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
  align-items: stretch;
}

.bh-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.bh-choice-card {
  width: 100%;
  max-width: 100%;
  min-height: 540px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}

.bh-cards .bh-choice-card:first-child,
.bh-cards .bh-choice-card:last-child {
  justify-self: stretch;
}

.bh-round-icon {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-bottom: 26px;
  border-radius: 999px;
  color: var(--bh-accent);
  background: #030303;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 6px 12px rgba(0, 0, 0, 0.2);
}

.bh-round-icon svg {
  width: 42px;
  height: 42px;
}

.bh-card h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #050505;
  font-weight: 800;
}

.bh-choice-card p,
.bh-card-intro {
  margin: 0 0 22px;
  color: #151515;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
}

.bh-tick-list {
  list-style: none;
  margin: 12px 0 38px;
  padding: 0;
}

.bh-tick-list li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.35;
}

.bh-tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--bh-accent);
  font-weight: 800;
  font-size: 24px;
}

.bh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-height: 68px;
  margin-top: auto;
  padding: 16px 24px;
  border: 0;
  border-radius: 9px;
  background: #000;
  color: #fff !important;
  text-decoration: none !important;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.05;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.bh-button:hover,
.bh-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.22);
  color: #fff !important;
}

.bh-button span {
  margin-left: auto;
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
}

.bh-form-card {
  padding: clamp(30px, 4vw, 42px);
  min-height: 760px;
}

.bh-form-card-single,
.bh-single-form .bh-form-card {
  max-width: 680px;
  margin: 0 auto;
}

.bh-form-card .bh-round-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
}

.bh-form-card h2 {
  margin-bottom: 10px;
}

.bh-card-intro {
  margin-bottom: 22px;
  line-height: 1.35;
}

.bh-form {
  display: grid;
  gap: 16px;
}

.bh-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.bh-field {
  position: relative;
  display: block;
  margin: 0;
}

.bh-field-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  color: #5f626a;
  transform: translateY(-50%);
  pointer-events: none;
}

.bh-field-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.bh-field input,
.bh-field select,
.bh-field textarea {
  width: 100%;
  min-height: 62px;
  border: 1px solid #d3d3d3;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font: inherit;
  font-size: 17px;
  line-height: 1.3;
  outline: none;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.bh-field input,
.bh-field select {
  padding: 0 18px 0 62px;
}

.bh-field textarea {
  min-height: 104px;
  resize: vertical;
  padding: 22px 18px 16px 62px;
}

.bh-field input::placeholder,
.bh-field textarea::placeholder {
  color: #686b73;
  opacity: 1;
}

.bh-field input:focus,
.bh-field select:focus,
.bh-field textarea:focus {
  border-color: var(--bh-accent);
  box-shadow: 0 0 0 3px rgba(181, 138, 69, 0.24);
  background: #fff;
}

.bh-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 22px) 29px, calc(100% - 14px) 29px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.bh-field input[type="date"] {
  color: #686b73;
}

.bh-field input[type="date"]:valid,
.bh-field input[type="date"]:focus {
  color: #111;
}

.bh-optional-label,
.bh-contact-method legend {
  margin: 4px 0 -4px;
  font-size: 16px;
  line-height: 1.35;
  color: #25262b;
  font-weight: 500;
}

.bh-reason-label,
.bh-contact-method legend {
  font-weight: 800;
  color: #111;
}

.bh-contact-method {
  padding: 0;
  margin: 6px 0 10px;
  border: 0;
}

.bh-contact-method legend span {
  color: #c52727;
}

.bh-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.bh-method-option {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: 24px 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #d3d3d3;
  border-radius: 9px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.bh-method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bh-method-option.is-selected {
  border-color: var(--bh-accent);
  background: #fbf7f0;
}

.bh-radio-dot {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #8b8f98;
  border-radius: 999px;
}

.bh-method-option.is-selected .bh-radio-dot {
  border-color: var(--bh-accent);
}

.bh-method-option.is-selected .bh-radio-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--bh-accent);
}

.bh-whatsapp-mark,
.bh-call-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.bh-whatsapp-mark {
  border-radius: 999px;
  background: #24d366;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.bh-call-mark svg {
  width: 30px;
  height: 30px;
  color: #000;
}

.bh-method-option strong,
.bh-method-option small {
  display: block;
}

.bh-method-option strong {
  font-size: 17px;
  line-height: 1.1;
  color: #111;
}

.bh-method-option small {
  margin-top: 4px;
  color: #444;
  font-size: 14px;
  line-height: 1.1;
}

.bh-submit {
  margin-top: 10px;
}

.bh-form-message {
  min-height: 0;
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.35;
}

.bh-form-message.is-visible {
  display: block;
}

.bh-form-message.is-success {
  background: #eaf7ec;
  color: #175d27;
  border: 1px solid #bde4c4;
}

.bh-form-message.is-error {
  background: #fff0f0;
  color: #8a1f1f;
  border: 1px solid #f2c3c3;
}

.bh-safe-note {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #6e7179;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.bh-safe-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.bh-whatsapp-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 4px;
  padding: 18px 20px;
  border-radius: 9px;
  background: #f2eee8;
  color: #171717;
  font-size: 15px;
  line-height: 1.4;
}

.bh-whatsapp-note > span {
  color: var(--bh-accent);
  font-size: 24px;
}

.bh-whatsapp-note strong {
  font-size: 16px;
}

.bh-form.is-loading .bh-submit {
  opacity: 0.72;
  pointer-events: none;
}

.bh-forms-stacked {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.bh-forms-stacked .bh-form-card {
  min-height: 0;
}

@media (max-width: 980px) {
  .bh-cards,
  .bh-forms-grid {
    grid-template-columns: 1fr;
  }

  .bh-choice-card,
  .bh-form-card,
  .bh-cards .bh-choice-card:first-child,
  .bh-cards .bh-choice-card:last-child {
    width: min(100%, 680px);
    max-width: 680px;
    justify-self: center;
  }

  .bh-choice-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .bh-section {
    padding: 30px 14px;
  }

  .bh-card {
    border-radius: 14px;
  }

  .bh-choice-card,
  .bh-form-card {
    padding: 26px 22px;
  }

  .bh-round-icon,
  .bh-form-card .bh-round-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .bh-round-icon svg {
    width: 34px;
    height: 34px;
  }

  .bh-card h2 {
    font-size: 28px;
  }

  .bh-method-grid {
    grid-template-columns: 1fr;
  }

  .bh-button {
    min-height: 62px;
    font-size: 17px;
  }

  .bh-button span {
    font-size: 30px;
  }
}

/* v1.0.1: WordPress theme/page-builder hardening */
body .bh-section {
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden;
}

body .bh-section .bh-container {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body .bh-section .bh-card {
  background: rgba(255, 255, 255, 0.97) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24) !important;
  color: #050505 !important;
}

body .bh-section .bh-card h2,
body .bh-section .bh-card p,
body .bh-section .bh-card li,
body .bh-section .bh-card legend,
body .bh-section .bh-card label,
body .bh-section .bh-card strong,
body .bh-section .bh-card small {
  font-family: inherit !important;
}

body .bh-section .bh-card h2 {
  color: #050505 !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

body .bh-section .bh-tick-list {
  list-style: none !important;
  padding-left: 0 !important;
}

body .bh-section .bh-tick-list li::marker {
  content: "" !important;
}

body .bh-section .bh-button,
body .bh-section a.bh-button,
body .bh-section button.bh-button,
body .bh-section input[type="submit"].bh-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 68px !important;
  padding: 16px 24px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: #000 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  box-shadow: none;
}

body .bh-section .bh-button:hover,
body .bh-section .bh-button:focus {
  background: #000 !important;
  color: #fff !important;
  text-decoration: none !important;
}

body .bh-section .bh-field input,
body .bh-section .bh-field select,
body .bh-section .bh-field textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 62px !important;
  margin: 0 !important;
  border: 1px solid #d3d3d3 !important;
  border-radius: 9px !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: #111 !important;
  box-shadow: none !important;
  text-transform: none !important;
}

body .bh-section .bh-field input,
body .bh-section .bh-field select {
  padding: 0 18px 0 62px !important;
}

body .bh-section .bh-field textarea {
  padding: 22px 18px 16px 62px !important;
}

body .bh-section .bh-round-icon {
  background: #030303 !important;
  color: var(--bh-accent) !important;
  border-radius: 999px !important;
}

body .bh-section .bh-method-option {
  border-radius: 9px !important;
}

@media (max-width: 640px) {
  body .bh-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


/* v1.0.2 force-match layer: keeps the screenshot styling even under aggressive theme CSS. */
body .bh-section,
body .entry-content .bh-section,
body .wp-site-blocks .bh-section,
body .elementor .bh-section {
  position: relative !important;
  isolation: isolate !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 520px !important;
  margin: 0 !important;
  padding: clamp(42px, 6vw, 90px) 20px !important;
  background-position: center !important;
  background-size: cover !important;
  color: #050505 !important;
}

body .bh-section .bh-section-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background: var(--bh-background-colour) !important;
  backdrop-filter: blur(1px) !important;
}

body .bh-section .bh-container {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body .bh-section .bh-cards,
body .bh-section .bh-forms-grid {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 3vw, 40px) !important;
  align-items: stretch !important;
}

body .bh-section .bh-cards .bh-choice-card:first-child,
body .bh-section .bh-cards .bh-choice-card:last-child {
  justify-self: stretch !important;
}

body .bh-section .bh-card {
  background: rgba(255, 255, 255, 0.97) !important;
  color: #050505 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24) !important;
  overflow: visible !important;
}

body .bh-section .bh-choice-card {
  display: flex !important;
  flex-direction: column !important;
  max-width: 420px !important;
  min-height: 560px !important;
  padding: clamp(28px, 4vw, 44px) !important;
}

body .bh-section .bh-form-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 760px !important;
  padding: clamp(30px, 4vw, 42px) !important;
}

body .bh-section .bh-form-card-single,
body .bh-section .bh-single-form .bh-form-card {
  max-width: 680px !important;
  margin: 0 auto !important;
}

body .bh-section .bh-round-icon {
  width: 76px !important;
  height: 76px !important;
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  margin: 0 0 26px 0 !important;
  border-radius: 999px !important;
  color: var(--bh-accent) !important;
  background: #030303 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 6px 12px rgba(0, 0, 0, 0.2) !important;
}

body .bh-section .bh-round-icon svg {
  display: block !important;
  width: 42px !important;
  height: 42px !important;
  fill: none !important;
  stroke: currentColor !important;
}

body .bh-section .bh-card h2 {
  margin: 0 0 16px !important;
  padding: 0 !important;
  font-family: inherit !important;
  font-size: clamp(28px, 2.5vw, 38px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  color: #050505 !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

body .bh-section .bh-choice-card p,
body .bh-section .bh-card-intro {
  margin: 0 0 22px !important;
  padding: 0 !important;
  color: #151515 !important;
  font-size: clamp(16px, 1.2vw, 19px) !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

body .bh-section .bh-tick-list {
  list-style: none !important;
  margin: 12px 0 38px !important;
  padding: 0 !important;
}

body .bh-section .bh-tick-list li {
  position: relative !important;
  list-style: none !important;
  margin: 0 0 14px !important;
  padding: 0 0 0 34px !important;
  color: #111 !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
}

body .bh-section .bh-tick-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: -2px !important;
  color: var(--bh-accent) !important;
  font-weight: 800 !important;
  font-size: 24px !important;
}

body .bh-section .bh-button,
body .bh-section a.bh-button,
body .bh-section button.bh-button {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  width: 100% !important;
  min-height: 68px !important;
  margin-top: auto !important;
  padding: 16px 24px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: #000 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: clamp(17px, 1.25vw, 22px) !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  text-align: center !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  box-shadow: none !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

body .bh-section .bh-button:hover,
body .bh-section .bh-button:focus,
body .bh-section .bh-button:focus-visible {
  background: #000 !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.22) !important;
}

body .bh-section .bh-button span {
  margin-left: auto !important;
  font-size: 36px !important;
  line-height: 1 !important;
  font-weight: 300 !important;
}

body .bh-section .bh-form {
  display: grid !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .bh-section .bh-field {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font: inherit !important;
}

body .bh-section .bh-field-icon {
  position: absolute !important;
  left: 18px !important;
  top: 50% !important;
  z-index: 2 !important;
  width: 24px !important;
  height: 24px !important;
  color: #5f626a !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

body .bh-section .bh-field-icon svg {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
}

body .bh-section .bh-field input,
body .bh-section .bh-field select,
body .bh-section .bh-field textarea {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 62px !important;
  margin: 0 !important;
  border: 1px solid #d3d3d3 !important;
  border-radius: 9px !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: #111 !important;
  font-family: inherit !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  outline: none !important;
  box-shadow: none !important;
  text-transform: none !important;
}

body .bh-section .bh-field input,
body .bh-section .bh-field select {
  padding: 0 18px 0 62px !important;
}

body .bh-section .bh-field textarea {
  min-height: 104px !important;
  padding: 22px 18px 16px 62px !important;
  resize: vertical !important;
}

body .bh-section .bh-field input::placeholder,
body .bh-section .bh-field textarea::placeholder {
  color: #686b73 !important;
  opacity: 1 !important;
}

body .bh-section .bh-method-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 38px !important;
}

body .bh-section .bh-method-option {
  position: relative !important;
  min-height: 82px !important;
  display: grid !important;
  grid-template-columns: 24px 34px 1fr !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 16px 18px !important;
  border: 1px solid #d3d3d3 !important;
  border-radius: 9px !important;
  cursor: pointer !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

body .bh-section .bh-method-option.is-selected {
  border-color: var(--bh-accent) !important;
  background: #fbf7f0 !important;
}

body .bh-section .bh-whatsapp-note {
  display: grid !important;
  grid-template-columns: 32px 1fr !important;
  gap: 12px !important;
  align-items: start !important;
  margin-top: 4px !important;
  padding: 18px 20px !important;
  border-radius: 9px !important;
  background: #f2eee8 !important;
  color: #171717 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

@media (max-width: 980px) {
  body .bh-section .bh-cards,
  body .bh-section .bh-forms-grid {
    grid-template-columns: 1fr !important;
  }

  body .bh-section .bh-choice-card,
  body .bh-section .bh-form-card,
  body .bh-section .bh-cards .bh-choice-card:first-child,
  body .bh-section .bh-cards .bh-choice-card:last-child {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    min-height: 0 !important;
    justify-self: center !important;
  }
}

@media (max-width: 640px) {
  body .bh-section {
    padding: 30px 14px !important;
  }

  body .bh-section .bh-choice-card,
  body .bh-section .bh-form-card {
    padding: 26px 22px !important;
  }

  body .bh-section .bh-method-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v1.1.0 clean-up layer */
body .bh-section .bh-choice-card {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 540px !important;
  height: 100% !important;
}

body .bh-section .bh-card h2 {
  letter-spacing: -0.045em !important;
}

body .bh-section .bh-button,
body .bh-section a.bh-button,
body .bh-section button.bh-button {
  min-height: 64px !important;
  gap: 14px !important;
  padding-left: 24px !important;
  padding-right: 22px !important;
  white-space: normal !important;
}

body .bh-section .bh-form-card {
  max-width: 570px !important;
  min-height: 0 !important;
  padding: clamp(34px, 4vw, 46px) !important;
}

body .bh-section .bh-form-card h2 {
  margin-bottom: 12px !important;
}

body .bh-section .bh-card-intro {
  margin-bottom: 24px !important;
  line-height: 1.45 !important;
}

body .bh-section .bh-field input,
body .bh-section .bh-field select,
body .bh-section .bh-field textarea {
  min-height: 60px !important;
}

body .bh-section .bh-field textarea {
  min-height: 112px !important;
}

body .bh-section .bh-contact-method {
  margin: 2px 0 8px !important;
}

body .bh-section .bh-method-grid {
  gap: 12px !important;
}

body .bh-section .bh-method-option {
  grid-template-columns: 22px 38px 1fr !important;
  min-height: 78px !important;
  padding: 14px 16px !important;
}

body .bh-section .bh-whatsapp-mark {
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  background: #25d366 !important;
  color: #fff !important;
  display: inline-grid !important;
  place-items: center !important;
  line-height: 1 !important;
  font-size: 0 !important;
}

body .bh-section .bh-whatsapp-mark svg {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  fill: currentColor !important;
  stroke: none !important;
}

body .bh-section .bh-call-mark svg {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
}

body .bh-section .bh-whatsapp-note {
  margin-top: 6px !important;
}

@media (max-width: 980px) {
  body .bh-section .bh-choice-card,
  body .bh-section .bh-form-card {
    max-width: 680px !important;
  }
}

@media (max-width: 640px) {
  body .bh-section .bh-choice-card,
  body .bh-section .bh-form-card {
    min-height: 0 !important;
  }

  body .bh-section .bh-button,
  body .bh-section a.bh-button,
  body .bh-section button.bh-button {
    font-size: 18px !important;
  }
}


/* v1.1.3 requested card/method/WhatsApp refinements */
body .bh-section .bh-cards {
  align-items: stretch !important;
}

body .bh-section .bh-cards .bh-choice-card:first-child,
body .bh-section .bh-cards .bh-choice-card:last-child {
  justify-self: stretch !important;
}

body .bh-section .bh-choice-card {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 540px !important;
  height: 100% !important;
}

body .bh-section .bh-method-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 38px !important;
}

body .bh-section .bh-whatsapp-mark svg {
  width: 22px !important;
  height: 22px !important;
}

@media (max-width: 980px) {
  body .bh-section .bh-choice-card {
    height: auto !important;
    min-height: 0 !important;
    max-width: 680px !important;
  }
}


/* v1.1.3 mobile wrap for preferred contact method cards */
@media (max-width: 640px) {
  body .bh-section .bh-method-grid,
  .bh-section .bh-method-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v1.1.4: Font Awesome Free icon rendering */
body .bh-section .bh-round-icon i,
.bh-round-icon i {
  display: block !important;
  font-size: 34px !important;
  line-height: 1 !important;
  color: currentColor !important;
}

body .bh-section .bh-form-card .bh-round-icon i,
.bh-form-card .bh-round-icon i {
  font-size: 32px !important;
}

body .bh-section .bh-field-icon i,
.bh-field-icon i {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  font-size: 20px !important;
  line-height: 24px !important;
  text-align: center !important;
  color: currentColor !important;
}

body .bh-section .bh-button .bh-button-icon,
.bh-button .bh-button-icon {
  margin-left: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

body .bh-section .bh-button .bh-button-icon i,
.bh-button .bh-button-icon i {
  font-size: 20px !important;
  line-height: 1 !important;
}

body .bh-section .bh-whatsapp-mark,
.bh-whatsapp-mark {
  font-size: 22px !important;
  line-height: 1 !important;
}

body .bh-section .bh-whatsapp-mark i,
.bh-whatsapp-mark i {
  display: block !important;
  font-size: 22px !important;
  line-height: 1 !important;
  color: currentColor !important;
}

body .bh-section .bh-call-mark i,
.bh-call-mark i {
  display: block !important;
  font-size: 24px !important;
  line-height: 1 !important;
  color: #000 !important;
}

body .bh-section .bh-safe-note i,
.bh-safe-note i {
  font-size: 14px !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}

@media (max-width: 640px) {
  body .bh-section .bh-round-icon i,
  .bh-round-icon i {
    font-size: 28px !important;
  }
}

/* v1.1.5 card-selected form behaviour */
body .bh-section.bh-section-forms.bh-forms-selector-mode .bh-form-card,
body.bh-has-enquiry-cards .bh-section.bh-section-forms .bh-form-card {
  display: none !important;
}

body .bh-section.bh-section-forms.bh-forms-selector-mode .bh-form-card.is-active,
body.bh-has-enquiry-cards .bh-section.bh-section-forms .bh-form-card.is-active {
  display: flex !important;
}

body .bh-section.bh-section-forms.bh-forms-selector-mode .bh-forms-grid,
body.bh-has-enquiry-cards .bh-section.bh-section-forms .bh-forms-grid {
  grid-template-columns: minmax(0, 680px) !important;
  justify-content: center !important;
}

body .bh-section .bh-card-trigger.is-active {
  outline: 3px solid var(--bh-accent) !important;
  outline-offset: 4px !important;
}


/* v1.1.6 full-width selected form when using card selector */
body .bh-section.bh-section-forms.bh-forms-selector-mode .bh-forms-grid,
body.bh-has-enquiry-cards .bh-section.bh-section-forms .bh-forms-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-content: stretch !important;
  align-items: stretch !important;
}

body .bh-section.bh-section-forms.bh-forms-selector-mode .bh-form-card.is-active,
body.bh-has-enquiry-cards .bh-section.bh-section-forms .bh-form-card.is-active {
  width: 100% !important;
  max-width: 100% !important;
  justify-self: stretch !important;
}
