/* =========================================================
   DRAWMATIC FORMS  -  Frontend Styles
   Brand: #04295F  |  Titles: Plus Jakarta Sans  |  Body: DM Sans
========================================================= */

.dmf-section{
  --dmf-brand:        #04295F;
  --dmf-brand-2:      #0B3D85;
  --dmf-brand-soft:   #E8EEF7;
  --dmf-brand-light:  #F4F7FB;
  --dmf-text-dark:    #04295F;
  --dmf-text:         #1F2937;
  --dmf-muted:        #6B7280;
  --dmf-white:        #FFFFFF;
  --dmf-bg:           #FAFBFD;
  --dmf-border:       #E5E7EB;
  --dmf-border-2:     #D1D9E6;
  --dmf-success:      #16A34A;
  --dmf-success-bg:   #DCFCE7;
  --dmf-error:        #DC2626;
  --dmf-error-bg:     #FEE2E2;
  --dmf-shadow-sm:    0 2px 8px rgba(4, 41, 95, 0.05);
  --dmf-shadow-md:    0 4px 20px rgba(4, 41, 95, 0.08);
  --dmf-radius:       14px;
  --dmf-font-title:   'Plus Jakarta Sans', sans-serif;
  --dmf-font-body:    'DM Sans', sans-serif;

  font-family: var(--dmf-font-body);
  color: var(--dmf-text);
  padding: 60px 20px;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
.dmf-section *,
.dmf-section *::before,
.dmf-section *::after{ box-sizing: border-box; }

.dmf-section .dmf-req{ color: var(--dmf-error); }

/* ============================================================
   GENERIC CARDS
============================================================ */
.dmf-card{
  background: var(--dmf-white);
  border: 1px solid var(--dmf-border);
  border-radius: var(--dmf-radius);
  padding: 28px 30px;
  box-shadow: var(--dmf-shadow-sm);
  margin-bottom: 20px;
}
.dmf-card-title{
  font-family: var(--dmf-font-title);
  font-weight: 700; font-size: 22px;
  color: var(--dmf-text-dark);
  margin: 0 0 6px 0; line-height: 1.3;
}
.dmf-card-sub{
  font-size: 14px;
  color: var(--dmf-muted);
  margin: 0 0 20px 0; line-height: 1.5;
}

/* ============================================================
   FIELDS
============================================================ */
.dmf-field{ margin-bottom: 16px; width: 100%; }
.dmf-field label{
  display: block;
  font-family: var(--dmf-font-title);
  font-weight: 600;
  font-size: 13px;
  color: var(--dmf-text-dark);
  margin-bottom: 6px;
}
.dmf-field-hint{
  font-size: 12px;
  color: var(--dmf-muted);
  margin: -4px 0 6px 0;
}

.dmf-section input[type="text"],
.dmf-section input[type="email"],
.dmf-section input[type="tel"],
.dmf-section select,
.dmf-section textarea{
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid var(--dmf-border) !important;
  border-radius: 10px !important;
  background: var(--dmf-white) !important;
  font-family: var(--dmf-font-body) !important;
  font-size: 14px !important;
  color: var(--dmf-text) !important;
  line-height: 1.4 !important;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  box-shadow: none !important;
}
.dmf-section input::placeholder,
.dmf-section textarea::placeholder{
  color: #9CA3AF;
  opacity: 1;
}
.dmf-section input:focus,
.dmf-section select:focus,
.dmf-section textarea:focus{
  border-color: var(--dmf-brand) !important;
  box-shadow: 0 0 0 3px rgba(4, 41, 95, 0.10) !important;
}
.dmf-section select{
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'><path fill='%2304295F' d='M8 11L3 6h10z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
}
.dmf-section textarea{
  resize: vertical;
  min-height: 90px;
}

/* Input with leading icon
   The icon sits in a fixed-width column on the left so it never collides
   with the placeholder/value text regardless of theme overrides or icon font sizing. */
.dmf-input-icon{
  position: relative;
}
.dmf-input-icon > i{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42px;                   /* fixed reserved column */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dmf-brand);
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.dmf-section .dmf-input-icon input,
.dmf-section .dmf-input-icon select,
.dmf-section .dmf-input-icon textarea{
  padding-left: 46px !important; /* sits clear of the 42px icon column + 4px gap */
}
/* For selects, keep the right-side chevron breathing room */
.dmf-section .dmf-input-icon select{
  padding-right: 36px !important;
}

/* Area + Unit merged into ONE field
   Compact unit dropdown on right side. Width is small (~64px) so the number
   input gets max space, but padding/chevron are tuned so the selected unit
   text ("m²", "sq ft", "Acres") stays fully visible.
*/
.dmf-area-merged{
  position: relative;
}
.dmf-section .dmf-input-icon.dmf-area-merged{
  position: relative !important;
}

/* Number input: icon ke liye left 46px, unit dropdown ke liye right 78px */
.dmf-section .dmf-input-icon.dmf-area-merged .dmf-area-input{
  padding-left: 46px !important;
  padding-right: 78px !important;
  width: 100% !important;
}

/* Unit select: bigger specificity so .dmf-section .dmf-input-icon select rules lose */
.dmf-section .dmf-input-icon.dmf-area-merged .dmf-area-unit-select{
  position: absolute !important;
  top: 50% !important;
  right: 6px !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  width: 64px !important;
  height: calc(100% - 12px) !important;
  padding: 0 18px 0 6px !important;       /* right 18px = chevron, left 6px = text */
  margin: 0 !important;
  border: 0 !important;
  border-left: 1px solid rgba(0,0,0,.12) !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: var(--dmf-text) !important;
  cursor: pointer !important;
  z-index: 3 !important;
  background-position: right 4px center !important;
  background-size: 10px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

.dmf-section .dmf-input-icon.dmf-area-merged .dmf-area-unit-select:focus{
  outline: none !important;
  box-shadow: none !important;
}

/* Mobile */
@media (max-width: 480px){
  .dmf-section .dmf-input-icon.dmf-area-merged .dmf-area-input{
    padding-right: 72px !important;
  }
  .dmf-section .dmf-input-icon.dmf-area-merged .dmf-area-unit-select{
    width: 58px !important;
    padding: 0 16px 0 5px !important;
    font-size: 11px !important;
  }
}

/* Consent checkbox */
.dmf-consent{
  display: flex; align-items: flex-start; gap: 10px;
  margin: 6px 0 16px 0;
  font-size: 13px;
  color: var(--dmf-text);
  cursor: pointer;
  line-height: 1.5;
}
.dmf-section .dmf-consent input[type="checkbox"]{
  width: 16px !important;
  height: 16px !important;
  margin-top: 2px;
  accent-color: var(--dmf-brand);
  flex-shrink: 0;
}
.dmf-consent a{ color: var(--dmf-brand); text-decoration: underline; }

/* Honeypot */
.dmf-hp{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* ============================================================
   BUTTONS
============================================================ */
.dmf-section .dmf-btn{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px 22px !important;
  border-radius: 10px !important;
  font-family: var(--dmf-font-title) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  border: 1.5px solid transparent !important;
  text-decoration: none !important;
  transition: all .2s ease !important;
  background-image: none !important;
}
.dmf-section .dmf-btn-primary{
  background: var(--dmf-brand) !important;
  color: var(--dmf-white) !important;
  border-color: var(--dmf-brand) !important;
}
.dmf-section .dmf-btn-primary:hover{
  background: var(--dmf-brand-2) !important;
  border-color: var(--dmf-brand-2) !important;
  color: var(--dmf-white) !important;
}
.dmf-section .dmf-btn-outline{
  background: var(--dmf-white) !important;
  color: var(--dmf-brand) !important;
  border-color: var(--dmf-brand) !important;
}
.dmf-section .dmf-btn-outline:hover{
  background: var(--dmf-brand-soft) !important;
}
.dmf-section .dmf-btn[disabled]{
  opacity: .6;
  cursor: not-allowed;
}

/* ============================================================
   FORM MESSAGES + SECURE NOTE
============================================================ */
.dmf-form-msg{
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
}
.dmf-form-msg.is-success{
  display: block;
  background: var(--dmf-success-bg);
  color: #166534;
  border: 1px solid #BBF7D0;
}
.dmf-form-msg.is-error{
  display: block;
  background: var(--dmf-error-bg);
  color: #991B1B;
  border: 1px solid #FECACA;
}

.dmf-secure-note{
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--dmf-muted);
  margin: 12px 0 0 0;
  text-align: center;
}
.dmf-secure-note i{ color: var(--dmf-brand); }

/* ============================================================
   ============ CONTACT FORM SECTION ============
============================================================ */
.dmf-contact-section{
  max-width: 1200px;
  margin: 0 auto;
}

.dmf-contact-grid{
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.dmf-contact-side{
  display: flex; flex-direction: column;
  gap: 20px;
}
.dmf-contact-side .dmf-card{ margin-bottom: 0; }

/* Submit button full width inside form card */
.dmf-contact-form .dmf-btn-primary{
  width: 100%;
  padding: 15px 22px !important;
  font-size: 15px !important;
}

/* Info cards (right top) */
.dmf-info-list{
  display: flex; flex-direction: column;
  gap: 20px;
}
.dmf-info-item{
  display: flex; align-items: flex-start;
  gap: 14px;
}
.dmf-info-icon{
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--dmf-brand-soft);
  color: var(--dmf-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.dmf-info-body h4{
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--dmf-text-dark);
  margin: 0 0 2px 0;
}
.dmf-info-value{
  font-size: 14px;
  font-weight: 600;
  color: var(--dmf-text-dark);
  margin: 0 0 4px 0;
}
.dmf-info-note{
  font-size: 12px;
  color: var(--dmf-muted);
  margin: 0;
  line-height: 1.5;
}

/* Topic dropdown (mobile) */
.dmf-help-select{ display: none; margin-bottom: 16px; }

/* Topic list (right bottom) */
.dmf-topic-list{
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.dmf-section .dmf-topic-item{
  width: 100%;
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 12px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  text-align: left !important;
  cursor: pointer;
  font-family: var(--dmf-font-body) !important;
  transition: background .2s ease, border-color .2s ease;
  box-shadow: none !important;
}
.dmf-section .dmf-topic-item:hover{
  background: var(--dmf-brand-light) !important;
  border-color: var(--dmf-border) !important;
}
.dmf-topic-icon{
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dmf-brand-soft);
  color: var(--dmf-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.dmf-topic-body h4{
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 14px;
  color: var(--dmf-text-dark);
  margin: 0 0 2px 0;
}
.dmf-topic-body p{
  font-size: 12.5px;
  color: var(--dmf-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   ============ QUOTE FORM SECTION ============
============================================================ */
.dmf-quote-section{
  max-width: 1100px;
  margin: 0 auto;
}

.dmf-quote-head{
  margin-bottom: 30px;
}
.dmf-tagline{
  display: inline-block;
  background: var(--dmf-brand-soft);
  color: var(--dmf-brand);
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.dmf-quote-title{
  font-family: var(--dmf-font-title);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.15;
  color: var(--dmf-text-dark);
  margin: 0 0 10px 0;
}
.dmf-quote-sub{
  font-size: 15px;
  color: var(--dmf-muted);
  margin: 0;
  line-height: 1.5;
}

/* STEPPER */
.dmf-stepper{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 30px 0 24px 0;
  position: relative;
}
.dmf-stepper-item{
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}
.dmf-stepper-circle{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--dmf-white);
  border: 2px solid var(--dmf-border-2);
  color: var(--dmf-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 2;
  transition: all .25s ease;
}
.dmf-stepper-circle .dmf-step-check{ display: none; }
.dmf-stepper-label{
  margin-top: 8px;
  font-family: var(--dmf-font-title);
  font-weight: 600;
  font-size: 13px;
  color: var(--dmf-muted);
  transition: color .25s ease;
}
.dmf-stepper-line{
  position: absolute;
  top: 19px;
  left: 50%;
  right: -50%;
  height: 2px;
  border-top: 2px dashed var(--dmf-border-2);
  z-index: 1;
  transition: border-color .25s ease;
}
/* Active step */
.dmf-stepper-item.is-active .dmf-stepper-circle{
  background: var(--dmf-brand);
  border-color: var(--dmf-brand);
  color: var(--dmf-white);
  box-shadow: 0 0 0 4px rgba(4, 41, 95, 0.12);
}
.dmf-stepper-item.is-active .dmf-stepper-label{
  color: var(--dmf-brand);
}
/* Completed step */
.dmf-stepper-item.is-done .dmf-stepper-circle{
  background: var(--dmf-brand);
  border-color: var(--dmf-brand);
  color: var(--dmf-white);
}
.dmf-stepper-item.is-done .dmf-step-num{ display: none; }
.dmf-stepper-item.is-done .dmf-step-check{ display: inline; }
.dmf-stepper-item.is-done .dmf-stepper-line{
  border-top-style: solid;
  border-color: var(--dmf-brand);
}

/* Step body */
.dmf-step{ display: none; }
.dmf-step.is-active{ display: block; animation: dmfFadeIn .25s ease; }

@keyframes dmfFadeIn{
  from{ opacity: 0; transform: translateY(6px); }
  to  { opacity: 1; transform: translateY(0); }
}

.dmf-step-head{ margin-bottom: 20px; }
.dmf-step-count{
  display: inline-block;
  font-size: 12px;
  color: var(--dmf-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.dmf-step-head h3{
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 22px;
  color: var(--dmf-text-dark);
  margin: 0 0 4px 0;
}
.dmf-step-head p{
  font-size: 13.5px;
  color: var(--dmf-muted);
  margin: 0;
  line-height: 1.5;
}

/* SERVICES GRID (step 1) */
.dmf-services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dmf-service-card{
  position: relative;
  display: block;
  padding: 18px;
  background: var(--dmf-white);
  border: 1.5px solid var(--dmf-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s ease;
}
.dmf-service-card input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dmf-service-card:hover{
  border-color: var(--dmf-brand);
  background: var(--dmf-brand-light);
}
.dmf-service-card.is-selected{
  border-color: var(--dmf-brand);
  background: var(--dmf-brand-soft);
  box-shadow: 0 0 0 2px rgba(4, 41, 95, 0.10);
}
.dmf-svc-icon{
  width: 42px; height: 42px;
  color: var(--dmf-brand);
  font-size: 26px;
  display: flex; align-items: center;
  margin-bottom: 12px;
}
.dmf-svc-body h4{
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--dmf-text-dark);
  margin: 0 0 4px 0;
}
.dmf-svc-body p{
  font-size: 12.5px;
  color: var(--dmf-muted);
  margin: 0;
  line-height: 1.5;
}
.dmf-svc-check{
  position: absolute;
  top: 14px; right: 14px;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--dmf-border-2);
  background: var(--dmf-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--dmf-white);
  font-size: 11px;
  transition: all .2s ease;
}
.dmf-service-card.is-selected .dmf-svc-check{
  background: var(--dmf-brand);
  border-color: var(--dmf-brand);
}

/* STEP FOOTER */
.dmf-step-foot{
  margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.dmf-step-foot-note{
  font-size: 13px;
  color: var(--dmf-muted);
  margin: 0;
  display: flex; align-items: center;
  gap: 8px;
}
.dmf-step-foot-note i{ color: var(--dmf-brand); }
.dmf-step-actions{
  display: flex; align-items: center; gap: 12px;
}
.dmf-step-actions-end{
  margin-top: 20px;
  justify-content: flex-end;
}

/* GRID 2 COL (step 2 & 4) */
.dmf-grid-2col{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dmf-fullwidth{ grid-column: 1 / -1; }

/* Step 2 special: required services summary */
.dmf-services-summary{
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--dmf-brand-soft);
  border: 1px solid var(--dmf-border);
  border-radius: 10px;
  font-size: 14px;
}
.dmf-services-count{
  color: var(--dmf-brand);
  font-weight: 600;
}
.dmf-services-edit{
  color: var(--dmf-brand);
  text-decoration: underline;
  font-size: 13px;
  font-weight: 600;
}

/* STEP 3: DROPZONE */
.dmf-dropzone{
  border: 2px dashed var(--dmf-border-2);
  border-radius: 14px;
  padding: 36px 20px;
  text-align: center;
  transition: all .2s ease;
}
.dmf-dropzone.is-drag{
  border-color: var(--dmf-brand);
  background: var(--dmf-brand-light);
}
.dmf-dz-icon{
  color: var(--dmf-brand);
  font-size: 32px;
  margin-bottom: 12px;
}
.dmf-dz-text{
  font-family: var(--dmf-font-title);
  font-weight: 600;
  font-size: 15px;
  color: var(--dmf-text-dark);
  margin: 0 0 8px 0;
}
.dmf-dz-or{
  font-size: 12px;
  color: var(--dmf-muted);
  margin: 0 0 12px 0;
}
.dmf-dz-meta{
  font-size: 12px;
  color: var(--dmf-muted);
  margin: 14px 0 0 0;
  line-height: 1.6;
}
.dmf-uploaded-wrap{ margin-top: 22px; }
.dmf-uploaded-heading{
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 14px;
  color: var(--dmf-text-dark);
  margin: 0 0 12px 0;
}
.dmf-uploaded-list{
  display: flex; flex-direction: column;
  gap: 10px;
}
.dmf-up-item{
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--dmf-border);
  border-radius: 10px;
  background: var(--dmf-white);
}
.dmf-up-icon{
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--dmf-brand-soft);
  color: var(--dmf-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 10px;
  text-align: center;
}
.dmf-up-body{ flex: 1; min-width: 0; }
.dmf-up-name{
  font-family: var(--dmf-font-title);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dmf-text-dark);
  margin: 0 0 2px 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dmf-up-meta{
  font-size: 11.5px;
  color: var(--dmf-muted);
  text-transform: uppercase;
}
.dmf-up-status{
  font-size: 12.5px;
  color: var(--dmf-success);
  font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.dmf-up-status.is-uploading{ color: var(--dmf-muted); }
.dmf-up-status.is-error{ color: var(--dmf-error); }
.dmf-section .dmf-up-remove{
  flex-shrink: 0;
  background: transparent !important;
  border: none !important;
  color: var(--dmf-muted) !important;
  cursor: pointer !important;
  padding: 6px !important;
  font-size: 14px;
  box-shadow: none !important;
}
.dmf-section .dmf-up-remove:hover{
  color: var(--dmf-error) !important;
}

.dmf-secure-banner{
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--dmf-brand-light);
  border-radius: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--dmf-muted);
  line-height: 1.5;
}
.dmf-secure-banner i{ color: var(--dmf-brand); font-size: 16px; flex-shrink: 0; }

/* STEP 4: ICON FIELDS */
.dmf-icon-field{
  display: flex; align-items: flex-start; gap: 12px;
}
.dmf-field-icon{
  flex: 0 0 36px;
  width: 36px; height: 36px;
  background: var(--dmf-brand-soft);
  color: var(--dmf-brand);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  margin-top: 22px;
}
.dmf-field-body{ flex: 1; min-width: 0; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 980px){
  .dmf-contact-grid{ grid-template-columns: 1fr; }
  .dmf-grid-2col{ grid-template-columns: repeat(2, 1fr); }
  .dmf-services-grid{ grid-template-columns: repeat(2, 1fr); }
  .dmf-quote-title{ font-size: 32px; }
}

@media (max-width: 700px){
  .dmf-section{ padding: 40px 14px; }
  .dmf-card{ padding: 22px 18px; }
  .dmf-card-title{ font-size: 19px; }
  .dmf-quote-title{ font-size: 26px; }

  /* Stepper - hide labels except active */
  .dmf-stepper-label{ font-size: 11px; }
  .dmf-stepper-circle{ width: 32px; height: 32px; font-size: 12px; }
  .dmf-stepper-line{ top: 16px; }

  .dmf-services-grid{ grid-template-columns: 1fr; }
  .dmf-grid-2col{ grid-template-columns: 1fr; }

  .dmf-step-foot{ flex-direction: column; align-items: stretch; }
  .dmf-step-actions{ width: 100%; }
  .dmf-step-actions .dmf-btn{ flex: 1; }

  .dmf-help-select{ display: block; }
  .dmf-topic-list{ display: none; }
}

@media (max-width: 480px){
  .dmf-stepper-label{ display: none; }
  .dmf-stepper-item.is-active .dmf-stepper-label{
    display: block;
    position: absolute;
    top: 42px; left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .dmf-stepper{ margin-bottom: 50px; }
}

/* ============================================================
   THANK-YOU PANEL (all three forms)
============================================================ */
.dmf-section .dmf-thankyou{
  text-align: center;
  padding: 48px 28px;
  background: var(--dmf-white);
  border: 1px solid var(--dmf-border);
  border-radius: var(--dmf-radius);
  box-shadow: var(--dmf-shadow-md);
  max-width: 640px;
  margin: 0 auto;
}
.dmf-section .dmf-thankyou-icon{
  width: 84px; height: 84px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--dmf-success-bg);
  color: var(--dmf-success);
  font-size: 48px;
  animation: dmfPop .35s ease-out;
}
@keyframes dmfPop{
  from{ transform: scale(.6); opacity: 0; }
  to  { transform: scale(1);   opacity: 1; }
}
.dmf-section .dmf-thankyou-title{
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 28px;
  color: var(--dmf-text-dark);
  margin: 0 0 12px 0;
}
.dmf-section .dmf-thankyou-text{
  font-size: 16px;
  color: var(--dmf-muted);
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 480px;
}
.dmf-section .dmf-thankyou-refill{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px !important;
}

/* When the thank-you sits inside the contact form card, neutralise the card's own
   padding/border so the panel itself draws the box. */
.dmf-contact-form-card > .dmf-thankyou{
  box-shadow: none;
  border: none;
  padding: 24px 8px;
}

/* ============================================================
   QUICK / URGENT QUOTE FORM
============================================================ */
.dmf-quick-section{
  padding: 0px;
}
.dmf-quick-wrap{
  max-width: 520px;
  margin: 0 auto;
  background: var(--dmf-white);
  border: 1px solid var(--dmf-border);
  border-radius: var(--dmf-radius);
  box-shadow: var(--dmf-shadow-md);
  overflow: hidden;
}

/* ---- Header banner ---- */
.dmf-quick-head{
  background: linear-gradient(135deg, var(--dmf-brand) 0%, var(--dmf-brand-2) 100%);
  color: #fff;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.dmf-quick-head-left{
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
}
.dmf-quick-bolt{
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #fff;
}
.dmf-quick-title{
  font-family: var(--dmf-font-title);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 4px 0;
  color: #fff;
  line-height: 1.2;
}
.dmf-quick-sub{
  font-size: 13px;
  margin: 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.dmf-quick-badge{
  flex-shrink: 0;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--dmf-font-title);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ---- Form body ---- */
.dmf-quick-form{
  padding: 22px 24px 24px;
}
.dmf-quick-form .dmf-field{
  margin-bottom: 14px;
}
.dmf-quick-optional{
  font-weight: 400;
  color: var(--dmf-muted);
  font-size: 12px;
}

/* ---- Dropzone (compact) ---- */
.dmf-quick-dropzone{
  border: 2px dashed var(--dmf-border-2);
  border-radius: 10px;
  padding: 14px;
  background: var(--dmf-brand-light);
  transition: border-color .2s, background .2s;
}
.dmf-quick-dropzone.is-drag{
  border-color: var(--dmf-brand);
  background: var(--dmf-brand-soft);
}
.dmf-quick-dz-row{
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.dmf-quick-dz-text{
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--dmf-muted);
  flex: 1; min-width: 0;
}
.dmf-quick-dz-text i{
  color: var(--dmf-brand);
  font-size: 16px;
}
.dmf-quick-dz-choose{
  padding: 8px 16px !important;
  font-size: 13px !important;
}
.dmf-quick-dz-meta{
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--dmf-border);
  font-size: 11px;
  color: var(--dmf-muted);
  flex-wrap: wrap;
}

/* Uploaded file pill (single file) */
.dmf-quick-uploaded{
  margin-top: 8px;
}
.dmf-quick-uploaded-item{
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--dmf-brand-soft);
  border: 1px solid var(--dmf-border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--dmf-text);
}
.dmf-quick-uploaded-item > i{
  color: var(--dmf-brand);
  font-size: 16px;
  flex-shrink: 0;
}
.dmf-quick-uploaded-name{
  flex: 1;
  word-break: break-all;
  font-family: var(--dmf-font-body);
}
.dmf-quick-uploaded-remove{
  background: none; border: none;
  color: var(--dmf-error);
  cursor: pointer;
  padding: 4px 6px;
  font-size: 14px;
  border-radius: 4px;
  transition: background .15s;
}
.dmf-quick-uploaded-remove:hover{
  background: var(--dmf-error-bg);
}

/* Submit button (full width in quick form) */
.dmf-quick-submit{
  width: 100%;
  justify-content: center;
  padding: 14px 20px !important;
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 10px;
}

/* Secure note */
.dmf-quick-secure{
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px;
  color: var(--dmf-muted);
  margin: 14px 0 0;
  text-align: center;
  line-height: 1.5;
}
.dmf-quick-secure i{
  color: var(--dmf-brand);
}

/* Mobile tweaks for the quick form */
@media (max-width: 480px){
  .dmf-quick-head{
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px;
  }
  .dmf-quick-badge{ align-self: flex-start; }
  .dmf-quick-form{ padding: 18px 18px 20px; }
  .dmf-quick-dz-row{
    flex-direction: column;
    align-items: stretch;
  }
  .dmf-quick-dz-choose{ width: 100%; }
}
