.brt-booking-wrap,
.brt-thank-wrap,
.brt-tracking-wrap,
.brt-custom-quote-wrap {
  --brt-primary: #F8BF13;
  --brt-secondary: #000;
  --brt-text: #111111;
  --brt-muted: #6b7280;
  --brt-border: #e7e7e7;
  --brt-soft: #fff8df;
  font-family: Inter, Arial, sans-serif;
  color: var(--brt-text);
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 16px;
  box-sizing: border-box;
}
.brt-booking-wrap *, .brt-thank-wrap *, .brt-tracking-wrap *, .brt-custom-quote-wrap * { box-sizing: border-box; }
.brt-booking-card,
.brt-thank-card,
.brt-tracking-card,
.brt-custom-quote-card {
  background: #fff;
  border: 1px solid var(--brt-border);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
  overflow: hidden;
}
.brt-form-head {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(248,191,19,.35), transparent 32%),
    linear-gradient(135deg, #000 0%, #1b1b1b 100%);
  color: #fff;
  padding: 38px 38px 32px;
}
.brt-form-head:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(248,191,19,.16);
  pointer-events: none;
}
.brt-kicker {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(248,191,19,.14);
  border: 1px solid rgba(248,191,19,.42);
  color: var(--brt-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.brt-form-head h2,
.brt-thank-card h2,
.brt-tracking-card h2,
.brt-custom-quote-card h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
}
.brt-form-head p,
.brt-thank-card p,
.brt-tracking-card p,
.brt-custom-quote-card p { margin: 0; color: var(--brt-muted); line-height: 1.6; }
.brt-form-head p { color: rgba(255,255,255,.78); max-width: 780px; }
.brt-booking-form { padding: 28px; background: #fff; }

.brt-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.brt-step-tab {
  position: relative;
  min-height: 86px;
  text-align: left;
  border: 1px solid var(--brt-border);
  background: #fff;
  border-radius: 18px;
  padding: 15px 15px 15px 62px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.brt-step-tab span {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #000;
  font-weight: 900;
}
.brt-step-tab strong {
  display: block;
  color: #000;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.brt-step-tab small { display: block; color: var(--brt-muted); font-weight: 700; }
.brt-step-tab.is-active,
.brt-step-tab.is-complete {
  border-color: rgba(248,191,19,.75);
  background: linear-gradient(180deg, #fffdf4 0%, #fff 100%);
  box-shadow: 0 14px 32px rgba(248,191,19,.18);
}
.brt-step-tab.is-active { transform: translateY(-1px); }
.brt-step-tab.is-active span,
.brt-step-tab.is-complete span { background: var(--brt-primary); color: #000; }
.brt-step-tab.is-complete span:after { content: "✓"; font-size: 14px; }
.brt-step-tab.is-complete span { font-size: 0; }

.brt-step-message:empty { display: none; }
.brt-step-panel { display: none; }
.brt-step-panel.is-active { display: block; animation: brtFadeUp .22s ease both; }
@keyframes brtFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.brt-section {
  border: 1px solid var(--brt-border);
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 0;
  background: linear-gradient(180deg, #fff 0%, #fffdf7 100%);
}
.brt-section-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.brt-section-title > span {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brt-primary);
  color: #000;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(248,191,19,.32);
}
.brt-section-title h3 { margin: 0 0 5px; font-size: 21px; font-weight: 900; color: #000; }
.brt-section-title p { margin: 0; color: var(--brt-muted); }
.brt-mini-head { margin: 12px 0 14px; }
.brt-mini-head strong { display: block; color: #000; font-size: 17px; font-weight: 900; }
.brt-mini-head p { margin: 4px 0 0; color: var(--brt-muted); font-size: 14px; }
.brt-divider { height: 1px; background: var(--brt-border); margin: 24px 0; }

.brt-grid { display: grid; gap: 16px; }
.brt-grid-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.brt-col-12 { grid-column: span 12; }
.brt-col-6 { grid-column: span 6; }
.brt-col-4 { grid-column: span 4; }
.brt-col-3 { grid-column: span 3; }
.brt-field { display: flex; flex-direction: column; gap: 7px; margin: 0; }
.brt-field span { font-weight: 900; font-size: 14px; color: #000; }
.brt-field em { color: #d31313; font-style: normal; }
.brt-field small { color: var(--brt-muted); font-size: 12px; line-height: 1.4; }
.brt-field input,
.brt-field select,
.brt-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d8d8d8 !important;
  border-radius: 14px !important;
  padding: 12px 14px !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 15px !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.brt-field textarea { min-height: 118px; resize: vertical; }
.brt-field input:focus,
.brt-field select:focus,
.brt-field textarea:focus {
  border-color: var(--brt-primary) !important;
  box-shadow: 0 0 0 4px rgba(248,191,19,.20) !important;
  background: #fffdf6 !important;
}
.brt-field input.brt-input-error,
.brt-field select.brt-input-error,
.brt-field textarea.brt-input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,.10) !important;
}
.brt-pickup-row {
  position: relative;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  margin-bottom: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}
.brt-remove-pickup {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.brt-add-pickup,
.brt-calculate-btn,
.brt-submit-btn,
.brt-next-btn,
.brt-back-btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
}
.brt-add-pickup,
.brt-back-btn { background: #000; color: #fff; }
.brt-calculate-btn,
.brt-next-btn { background: var(--brt-primary); color: #000; }
.brt-submit-btn { background: #000; color: #fff; font-size: 16px; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.brt-add-pickup:hover,
.brt-calculate-btn:hover,
.brt-submit-btn:hover,
.brt-next-btn:hover,
.brt-back-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.brt-submit-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.brt-calculate-btn { margin-top: 18px; }
.brt-price-result { margin-top: 18px; }
.brt-breakdown,
.brt-quote-box,
.brt-alert {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--brt-border);
  background: #fff;
}
.brt-breakdown { border-color: rgba(248,191,19,.55); background: linear-gradient(180deg, #fffdf2 0%, #fff 100%); }
.brt-breakdown h4 { margin: 0 0 12px; font-size: 19px; color: #000; font-weight: 900; }
.brt-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #ececec;
}
.brt-breakdown > div:first-of-type { border-top: 0; }
.brt-breakdown-total { font-size: 20px; font-weight: 900; color: #000; }
.brt-breakdown-total strong { color: #000; }
.brt-quote-box { background: #fff8df; border-color: rgba(248,191,19,.65); }
.brt-quote-box strong { display: block; color: #000; margin-bottom: 4px; }
.brt-alert { margin: 12px 0; }
.brt-alert-error { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.brt-alert-warning { background: #fff8df; color: #5b4100; border-color: rgba(248,191,19,.65); }
.brt-alert-info { background: #fff8df; color: #000; border-color: rgba(248,191,19,.55); }
.brt-step-actions,
.brt-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 0;
}
.brt-step-actions { justify-content: flex-end; }
.brt-step-actions-between { justify-content: space-between; }
.brt-final-action { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.brt-secure-note { margin: 0; color: var(--brt-muted); font-size: 13px; }
.brt-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff8df;
  color: #000;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  border: 1px solid rgba(248,191,19,.55);
}
.brt-thank-card,
.brt-tracking-card { padding: 34px; }
.brt-ref-line { margin: 10px 0 !important; }
.brt-thank-details { margin-top: 22px; overflow-x: auto; }
.brt-tracking-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  margin: 22px 0;
}
.brt-track-result {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: #fffdf2;
  border: 1px solid rgba(248,191,19,.50);
}
.brt-track-result h3 { margin: 0 0 6px; }
.brt-status-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.brt-status-step {
  position: relative;
  text-align: center;
  color: #9ca3af;
  font-size: 12px;
}
.brt-status-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  display: block;
  margin: 0 auto 8px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #d1d5db;
}
.brt-status-step.is-active { color: #000; font-weight: 900; }
.brt-status-step.is-active span { background: var(--brt-primary); box-shadow: 0 0 0 1px var(--brt-primary); }
.brt-status-step.is-cancelled { color: #991b1b; }
.brt-status-step.is-cancelled span { background: #ef4444; }
.brt-track-meta { display: flex; gap: 22px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .brt-booking-form, .brt-form-head, .brt-thank-card, .brt-tracking-card { padding: 22px; }
  .brt-stepper { grid-template-columns: 1fr; }
  .brt-step-tab { min-height: auto; }
  .brt-section { padding: 20px; }
  .brt-col-6, .brt-col-4, .brt-col-3 { grid-column: span 12; }
  .brt-tracking-form { grid-template-columns: 1fr; }
  .brt-status-line { grid-template-columns: repeat(2, 1fr); }
  .brt-step-actions-between { align-items: stretch; }
  .brt-step-actions-between > *, .brt-final-action { width: 100%; }
  .brt-final-action { justify-content: stretch; }
  .brt-submit-btn, .brt-next-btn, .brt-back-btn { width: 100%; }
}

/* v1.1.1 typography + hover color fixes */
.brt-booking-wrap,
.brt-thank-wrap,
.brt-tracking-wrap,
.brt-booking-wrap input,
.brt-booking-wrap select,
.brt-booking-wrap textarea,
.brt-booking-wrap button,
.brt-thank-wrap input,
.brt-thank-wrap select,
.brt-thank-wrap textarea,
.brt-thank-wrap button,
.brt-tracking-wrap input,
.brt-tracking-wrap select,
.brt-tracking-wrap textarea,
.brt-tracking-wrap button {
  font-family: 'Inter', Arial, sans-serif !important;
}

.brt-form-head h1,
.brt-form-head h2,
.brt-thank-card h1,
.brt-thank-card h2,
.brt-tracking-card h1,
.brt-tracking-card h2,
.brt-section-title h3,
.brt-breakdown h4,
.brt-track-result h3,
.brt-step-tab strong,
.brt-kicker,
.brt-mini-head strong,
.brt-section-title > span,
.brt-success-icon {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: .045em;
}

.brt-form-head h2,
.brt-thank-card h2,
.brt-tracking-card h2,
.brt-custom-quote-card h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: .98;
}

.brt-section-title h3 {
  font-size: 30px;
  line-height: 1;
}

.brt-step-tab strong {
  font-size: 22px;
}

.brt-kicker {
  font-size: 15px;
}

.brt-booking-wrap a,
.brt-thank-wrap a,
.brt-tracking-wrap a {
  color: #000 !important;
}

.brt-booking-wrap a:hover,
.brt-thank-wrap a:hover,
.brt-tracking-wrap a:hover,
.brt-booking-wrap a:focus,
.brt-thank-wrap a:focus,
.brt-tracking-wrap a:focus {
  color: #F8BF13 !important;
  text-decoration-color: #F8BF13 !important;
}

.brt-step-tab:hover,
.brt-step-tab:focus {
  border-color: rgba(248,191,19,.95) !important;
  background: linear-gradient(180deg, #fff8df 0%, #ffffff 100%) !important;
  color: #000 !important;
  outline: none !important;
  box-shadow: 0 14px 32px rgba(248,191,19,.18) !important;
}

.brt-add-pickup:hover,
.brt-add-pickup:focus,
.brt-back-btn:hover,
.brt-back-btn:focus {
  background: #F8BF13 !important;
  color: #000 !important;
  box-shadow: 0 12px 28px rgba(248,191,19,.30) !important;
  outline: none !important;
}

.brt-calculate-btn:hover,
.brt-calculate-btn:focus,
.brt-next-btn:hover,
.brt-next-btn:focus {
  background: #000 !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
  outline: none !important;
}

.brt-submit-btn:hover,
.brt-submit-btn:focus,
.brt-remove-pickup:hover,
.brt-remove-pickup:focus {
  background: #F8BF13 !important;
  color: #000 !important;
  box-shadow: 0 12px 28px rgba(248,191,19,.30) !important;
  outline: none !important;
}

.brt-field input:hover,
.brt-field select:hover,
.brt-field textarea:hover {
  border-color: rgba(248,191,19,.75) !important;
}

.brt-field input[type='file']::file-selector-button {
  background: #000 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 10px 15px !important;
  margin-right: 12px !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}

.brt-field input[type='file']::file-selector-button:hover {
  background: #F8BF13 !important;
  color: #000 !important;
}

/* Compact service area info */
.brt-service-area-note {
  border: 1px solid rgba(248,191,19,.55);
  background: #fff8df;
  border-radius: 14px;
  padding: 0;
  margin: 0 0 16px;
  overflow: hidden;
}
.brt-service-area-note summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 14px;
  color: #000;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brt-service-area-note summary::-webkit-details-marker {
  display: none;
}
.brt-service-area-note summary:after {
  content: '+';
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #000;
  color: #F8BF13;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}
.brt-service-area-note[open] summary:after {
  content: '−';
}
.brt-service-area-note p {
  margin: 0;
  padding: 0 14px 13px;
  color: #383838;
  line-height: 1.55;
  font-size: 13px;
}
.brt-service-area-note strong {
  color: #000;
}
.brt-zone-summary {
  min-height: 50px;
  border: 1px solid rgba(248,191,19,.55);
  background: #fff8df;
  border-radius: 14px;
  padding: 12px 14px;
  color: #000;
  line-height: 1.35;
}
.brt-zone-summary strong {
  display: block;
  color: #000;
  font-weight: 900;
  margin-bottom: 3px;
}
.brt-zone-summary small {
  display: block;
  color: #555;
}
.brt-vehicle-field.is-required span:after {
  content: ' *';
  color: #d31313;
}

/* v1.2.2 quick price calculator shortcode */
.brt-quick-calc-wrap {
  --brt-primary: #F8BF13;
  --brt-secondary: #000;
  --brt-text: #111111;
  --brt-muted: #4a4a4a;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 42px;
  background: var(--brt-primary);
  border-radius: 0 0 8px 8px;
  font-family: 'Inter', Arial, sans-serif !important;
  color: var(--brt-text);
  box-sizing: border-box;
}
.brt-quick-calc-wrap * { box-sizing: border-box; }
.brt-quick-calc-form { margin: 0; }
.brt-quick-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.brt-quick-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin: 20px auto 0;
}
.brt-quick-field {
  position: relative;
  display: block;
  margin: 0;
  padding-right: 18px;
}
.brt-quick-field:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 62px;
  background: rgba(255,255,255,.9);
  transform: translateY(-50%);
}
.brt-quick-options .brt-quick-field:not(:last-child):after { background: rgba(0,0,0,.15); }
.brt-quick-field select,
.brt-quick-field input {
  width: 100% !important;
  min-height: 56px !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0 44px 0 24px !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 15px !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-weight: 500 !important;
  line-height: 56px !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%) !important;
  background-position: calc(100% - 24px) 25px, calc(100% - 18px) 25px !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
}
.brt-quick-field select:hover,
.brt-quick-field select:focus,
.brt-quick-field input:hover,
.brt-quick-field input:focus {
  background-color: #000 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0,0,0,.16) !important;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%) !important;
}
.brt-quick-field select.brt-input-error,
.brt-quick-field input.brt-input-error {
  box-shadow: 0 0 0 4px rgba(220,38,38,.25), 0 16px 32px rgba(0,0,0,.12) !important;
}
.brt-quick-vehicle-field.is-required:before {
  content: "Required for Zone 3";
  position: absolute;
  left: 24px;
  top: -20px;
  font-size: 11px;
  line-height: 1;
  color: #000;
  font-weight: 800;
}
.brt-quick-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.brt-quick-calc-button {
  min-width: 222px;
  min-height: 58px;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 14px 34px !important;
  background: #000 !important;
  color: #fff !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  cursor: pointer;
  box-shadow: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.brt-quick-calc-button:hover,
.brt-quick-calc-button:focus {
  background: #fff !important;
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,.18) !important;
  outline: none !important;
}
.brt-quick-calc-button:disabled {
  opacity: .7;
  cursor: wait;
}
.brt-quick-result {
  max-width: 760px;
  margin: 22px auto 0;
}
.brt-quick-result:empty { display: none; }
.brt-quick-success {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #000;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 16px;
}
.brt-quick-success span {
  color: #008000;
  font-weight: 900;
}
.brt-quick-success strong { font-weight: 500; }
.brt-quick-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: #000;
  color: #fff;
}
.brt-quick-total small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.brt-quick-total strong {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: .04em;
  font-size: 38px;
  line-height: .95;
  color: #fff;
}
.brt-quick-result .brt-alert {
  background: rgba(255,255,255,.9);
  border-color: rgba(0,0,0,.12);
}
.brt-quick-result .brt-breakdown,
.brt-quick-result .brt-quote-box {
  background: #fff;
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 18px 38px rgba(0,0,0,.08);
}

@media (max-width: 980px) {
  .brt-quick-calc-wrap { padding: 30px 18px; }
  .brt-quick-fields,
  .brt-quick-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brt-quick-field:nth-child(2):after { display: none; }
}
@media (max-width: 640px) {
  .brt-quick-calc-wrap { padding: 24px 14px; }
  .brt-quick-fields,
  .brt-quick-options { grid-template-columns: 1fr; gap: 14px; }
  .brt-quick-field { padding-right: 0; }
  .brt-quick-field:after { display: none !important; }
  .brt-quick-action { margin-top: 22px; }
  .brt-quick-calc-button { width: 100%; }
  .brt-quick-total { align-items: flex-start; flex-direction: column; }
}


/* v1.2.3 custom quote form */
.brt-custom-quote-form {
  padding: 28px;
  background: #fff;
}
.brt-quote-head h2 {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: .025em;
}
.brt-quote-section {
  border: 1px solid var(--brt-border);
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #fff 0%, #fffdf7 100%);
}
.brt-custom-quote-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 8px;
}
.brt-custom-quote-result {
  margin-top: 18px;
}
.brt-custom-quote-result:empty { display: none; }
.brt-quote-vehicle-field.is-required span:after {
  content: ' *';
  color: #d31313;
}
.brt-custom-quote-success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(248,191,19,.65);
  background: #fff8df;
  border-radius: 20px;
  padding: 18px;
  color: #000;
}
.brt-custom-quote-success > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #F8BF13;
  border-radius: 50%;
  font-weight: 900;
}
.brt-custom-quote-success strong {
  display: block;
  color: #000;
  font-weight: 900;
  margin-bottom: 4px;
}
.brt-custom-quote-success p {
  margin: 0 0 12px !important;
  color: #222;
}
.brt-quote-link-wrap {
  margin-top: 14px;
  text-align: center;
}
.brt-quote-link,
.brt-quote-link:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #000 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900;
  font-family: 'Inter', Arial, sans-serif !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.brt-quote-link:hover,
.brt-quote-link:focus {
  background: #F8BF13 !important;
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  outline: none;
}
.brt-quote-helper {
  margin-top: 12px;
  border: 1px dashed rgba(0,0,0,.25);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.75);
  color: #000;
}

@media (max-width: 720px) {
  .brt-custom-quote-form { padding: 18px; }
  .brt-quote-section { padding: 18px; }
  .brt-custom-quote-actions { justify-content: stretch; }
  .brt-custom-quote-actions .brt-submit-btn { width: 100%; }
}

/* v1.3.0 quote-lead workflow updates */
.brt-quick-customer-fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin: 20px auto 0;
}
.brt-quick-customer-fields .brt-quick-field input {
  cursor: text;
  background-image: none !important;
  padding-right: 24px !important;
}
.brt-quick-customer-fields .brt-quick-field input:hover,
.brt-quick-customer-fields .brt-quick-field input:focus {
  background-image: none !important;
}
.brt-booking-form .brt-secure-note {
  color: #222;
}
@media (max-width: 980px) {
  .brt-quick-customer-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .brt-quick-customer-fields { grid-template-columns: 1fr; }
}

/* v1.3.1 layout fixes */
.brt-col-8 { grid-column: span 8; }
.brt-grid > .brt-field,
.brt-field { min-width: 0; }
.brt-field input,
.brt-field select,
.brt-field textarea { min-width: 0 !important; }
.brt-field span { overflow-wrap: anywhere; }
.brt-vehicle-field.is-zone3 .brt-zone-hint,
.brt-quote-vehicle-field.is-zone3 .brt-zone-hint,
.brt-quick-vehicle-field.is-zone3 .brt-zone-hint { display: block; }
.brt-vehicle-field.is-zone3::after,
.brt-quote-vehicle-field.is-zone3::after,
.brt-quick-vehicle-field.is-zone3::after {
  content: "Recommended for extended coverage quotes";
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #5b4100;
  font-weight: 700;
}
@media (max-width: 780px) {
  .brt-col-8 { grid-column: span 12; }
}
