/* Wheel quadrant active state */
.wheel-container svg g[id^="q-"] {
  cursor: pointer;
  transition: opacity 0.2s ease, filter 0.2s ease;
  opacity: 0.55;
}

.wheel-container svg g[id^="q-"].active {
  opacity: 1;
  filter: brightness(0.85) saturate(1.3);
}

.wheel-container svg g[id^="q-"]:hover {
  opacity: 0.85;
}

.wheel-container svg g[id^="q-"].active:hover {
  opacity: 1;
}

/* Make sure mask paths never block clicks */
.wheel-container svg path.q-path,
.wheel-container svg mask path {
  pointer-events: none;
}

.architectural---section {background: #F6F6F6;padding: 60px 0;}

/* ── CTA row (search removed; only the button now) ── */
.search-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.search-input-wrap { display: none !important; }   /* hide old search */

.btn-recommend {
  background: var(--secondary-color);
  color: var(--text-color);
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  margin-left: 0;
  transition: background .18s, transform .1s;
  cursor: pointer;
}
/* ══════════════════════════════════════════════
   2-COLUMN LAYOUT — cards on left, wheel on right
   ══════════════════════════════════════════════ */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: 60px;
  align-items: center;
}

/* Original PHP renders two services columns (#leftCol + #rightCol).
   Stack them both into the same grid cell so any active card —
   regardless of which column it lives in — appears in the left slot. */
#leftCol,
#rightCol {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}

/* ── Wheel column (right side) ── */
.wheel-col {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  align-self: center;
}

/* Hide the dashed connector lines between cards and wheel */
.dash-line { display: none !important; }

/* ══════════════════════════════════════════════
   CATEGORY CARDS
   - Only the active (.expanded) card is visible
   - On wheel/card click, JS swaps which one is .expanded
   ══════════════════════════════════════════════ */
.category-block {
  background: #ffffff;
  border: 1.5px solid #d4d9d5;
  border-radius: 10px;
  padding: 22px 22px 18px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .04);
  margin-bottom: 0;
  display: none;            /* hide all by default */
}
.category-block.expanded {
  display: block;           /* only the active card shows */
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.cat-header { cursor: pointer; display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; user-select: none; }
.cat-title  {/* font-family: 'DM Serif Display', serif; */font-size: 24px;color: #1a2e28;font-weight: 400;}
.cat-count  { font-size: 12px; color: #7a9990; font-weight: 500; }
.cat-desc   {font-size: 14px;color: #5a7a72;line-height: 1.55;margin-bottom: 6px;}

/* Slide wrapper — open by default in this design */
.slide-wrap {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
}
.slide-inner   { overflow: hidden; min-height: 0; }
.slide-content { padding-top: 8px; }

/* ══════════════════════════════════════════════
   ACCORDION ROWS
   ══════════════════════════════════════════════ */
.acc-item { border-top: 1px solid #d4d9d5; }

.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 13px 0;
  font-size: 18px;
  font-weight: 400;
  font-family: inherit;
  color: #1a2e28;
  cursor: pointer;
  text-align: left;
  outline: none;
  gap: 10px;
  transition: color .15s;
}
.acc-btn:hover { color: var(--primary-color); }

.acc-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #BCBCBC;
  transition: transform .26s ease;
}
.acc-btn.open .acc-icon { transform: rotate(180deg); }

.acc-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s cubic-bezier(.4,0,.2,1);
}
.acc-body-wrap.open { grid-template-rows: 1fr; }
.acc-body-inner    { overflow: hidden; min-height: 0; }
.acc-body-content {
  font-size: 14px;
  color: #5a7a72;
  line-height: 1.65;
  padding-bottom: 14px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #1a2e28;
  text-decoration: none;
  margin-top: 6px;
}
.learn-more:hover { color: var(--primary-color); }
.learn-more svg { transition: transform .15s; width: 13px; height: 13px; }
.learn-more:hover svg { transform: translateX(3px); }

/* extras hidden until "Show all" */
.extra-items { display: none; }
.extra-items.visible { display: block; }

.show-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  color: #1a2e28;
  cursor: pointer;
  padding: 12px 0 2px;
  width: 100%;
  justify-content: center;
  transition: color .15s;
}
.show-toggle:hover { color: var(--primary-color); }
.show-toggle .tog-icon { width: 14px; height: 14px; transition: transform .28s ease; }
.show-toggle.open .tog-icon { transform: rotate(180deg); }

/* ══════════════════════════════════════════════
   WHEEL — uses the fetched ServiceWheel.svg
   The source SVG already has <g id="q-assess">, <g id="q-design">,
   <g id="q-implement">, <g id="q-manage"> wrappers.  JS toggles the
   "active" class on those <g>s and swaps their inner path's gradient.
   ══════════════════════════════════════════════ */
.wheel-container {
  position: relative;
  /* background: transparent; */
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.wheel-container svg {
  /* width: 100%; */
  /* height: 100%; */
  /* display: block; */
  /* overflow: visible; */
}

/* Quadrant <g> wrappers are click targets */
.wheel-container svg g[id^="q-"] {
  cursor: pointer;
}
.wheel-container svg g[id^="q-"] path {
  transition: fill .35s ease, filter .35s ease;
}
.wheel-container svg g[id^="q-"]:hover path { filter: brightness(.95); }

/* ══════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wheel-container { max-width: 380px; }
  .wheel-col    { order: 1; }   /* wheel on top */
  .services-col { order: 2; }
}

@media (min-width: 992px){
  .services-col { order: 1; }   /* cards left */
  .wheel-col    { order: 2; }   /* wheel right */
}

@media (max-width:768px){
  .content-grid, .m-results-top{
    display: unset;
  }
}
/* ══════════════════════════════════════════
    RECOMMENDATIONS MODAL (wide 2-col layout)
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 980px;
  max-height: 75vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
  transform: translateY(14px) scale(.98);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: #f5f6f3;
  border-bottom: 1px solid #eaeeed;
  flex-shrink: 0;
}
.modal-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
}
.modal-close {
  width: 28px; height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #7a9990;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .15s, color .15s;
  padding: 0;
}
.modal-close:hover { background: #eaeeed; color: #1a2e28; }

/* Body (scrollable) */
.modal-body {
  padding: 32px 44px 28px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #d4d9d5 transparent;
}

/* Two-col grid for step 1 + 2 */
.m-steps-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eaeeed;
  margin-bottom: 32px;
}

/* step header */
.m-step-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.m-step-q {
  font-size: 20px;
  font-weight: 500;
  color: #1a2e28;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -.005em;
}

/* option row — now a <label> wrapping the native input */
.m-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 14px;
  cursor: pointer;
  user-select: none;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: border-color .18s, background .18s;
  margin: 0 -14px;
}
.m-option:hover:not(.selected) {
  background: #f7f8f5;
}
.m-option.selected {
  border-color: #1a2e28;
  background: #fff;
}

/* ── Native radio & checkbox inputs ── */
.m-option input[type="radio"],
.m-option input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin: 3px 0 0 0;
  border: 1.5px solid #b8c5bd;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: border-color .15s, background .15s;
  outline: none;
}
.m-option input[type="radio"]    { border-radius: 50%; }
.m-option input[type="checkbox"] { border-radius: 3px; }

/* filled dot / checkmark when checked */
.m-option input[type="radio"]::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform .12s ease;
}
.m-option input[type="radio"]:checked::before {
  transform: scale(1);
}

.m-option input[type="checkbox"]::before {
  content: '';
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transition: transform .12s ease;
}
.m-option input[type="checkbox"]:checked::before {
  transform: rotate(-45deg) translate(1px, -1px) scale(1);
}

/* checked state for both */
.m-option input[type="radio"]:checked,
.m-option input[type="checkbox"]:checked {
  background: #1a2e28;
  border-color: #1a2e28;
}

.m-option input[type="radio"]:focus-visible,
.m-option input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 1px;
}

.m-opt-text {
  flex: 1;
  min-width: 0;
}
.m-opt-title {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.4;
  margin-bottom: 2px;
}
.m-opt-sub {
  display: block;
  font-size: 14px;
  color: #9ab3ab;
  line-height: 1.45;
  font-weight: 400;
}

/* Step 3 section */
.m-step-3 { }
.m-step-3-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
  margin-top: 18px;
}
.m-subgroup {
  min-width: 0;
}
.m-sub-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 4px;
}
.m-sub-desc {
  font-size: 14px;
  color: #9ab3ab;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 400;
}

/* counter */
.m-selected-count {
  font-size: 14px;
  color: #9ab3ab;
  margin-top: 28px;
  transition: color .18s;
}
.m-selected-count.at-limit {
  color: #c4a33b;
  font-weight: 500;
}

/* Disabled state when 3-cap reached (old-code behavior) */
.m-option.disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}
.m-option.disabled input { cursor: not-allowed; }

/* footer */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 18px 44px 22px;
  background: #fff;
  border-top: 1px solid #eaeeed;
  flex-shrink: 0;
}
.btn-reset {
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  color: #5a7a72;
  cursor: pointer;
  padding: 10px 4px;
  transition: color .15s;
}
.btn-reset:hover { color: #1a2e28; }
.btn-show-recs {
  background: var(--secondary-color);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background .18s, transform .1s;
}
.btn-show-recs:hover { background: #b5cd2e; transform: translateY(-1px); }

@media (max-width: 720px) {
  .m-steps-top,
  .m-step-3-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── RESULTS SCREEN ── */
.m-results { display: none; }
.modal-box.results-mode .m-form       { display: none; }
.modal-box.results-mode .m-results    { display: block; }

.m-results-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px dashed #d4d9d5;
}

.m-sp-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}
.m-sp-text {
  font-size: 18px;
  font-weight: 400;
  color: #1a2e28;
  line-height: 1.4;
}
.m-sp-text b {
  font-weight: 700;
  color: #1a2e28;
}

/* Bar chart */
.m-bars {
  display: grid;
  grid-template-columns: 80px 1fr;
  row-gap: 14px;
  column-gap: 14px;
  align-items: center;
}
.m-bar-label {
  font-size: 14px;
  color: #1a2e28;
  font-weight: 400;
  text-align: right;
}
.m-bar-track {
  height: 14px;
  background: #eef2ef;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.m-bar-fill {
  height: 100%;
  background: #1a2e28;
  border-radius: 2px;
  width: 0;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}

/* Top services list */
.m-svcs-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-color);
  /* margin-bottom: 16px; */
  line-height: normal;
}
.m-svc-row {
  padding: 14px 0;
}
.m-svc-row + .m-svc-row {
  border-top: 1px solid #eaeeed;
}
.m-svc-title a {
  font-size: 16px;
  font-weight: 400;
  color: #1a2e28;
  margin-bottom: 3px;
  cursor: pointer;
  transition: color .15s;
  text-decoration: none;
}
.m-svc-title:hover { color: var(--primary-color); }
.m-svc-desc {
  font-size: 14px;
  color: #bcbcbc;
  line-height: 1.5;
}
.m-svc-hint {
  font-size: 12px;
  color: #BCBCBC;
  /* margin-top: 16px; */
}

/* Footer variations */
.btn-back {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: #1a2e28;
  cursor: pointer;
  padding: 8px 14px;
  transition: color .15s;
}
.btn-back:hover { color: var(--primary-color); }

.modal-footer.results-footer { justify-content: flex-end; gap: 10px; }
.modal-box.results-mode .form-footer    { display: none; }
.modal-box.results-mode .results-footer { display: flex; }
.results-footer { display: none; }

.wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.wheel-svg {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  overflow: visible;
}

/* ══════════════════════════════════════════════
   WHEEL — Quadrant transitions & active effect
   ══════════════════════════════════════════════ */

/* Each quadrant <g> wrapper */
.wheel-svg .quad {
  cursor: pointer;
  transform-origin: 270px 270px;          /* scale from wheel center, not svg corner */
  transition: transform 0.35s cubic-bezier(0.34, 1.36, 0.64, 1),
              filter 0.35s ease;
}

/* The path inside — gradient fill + stroke transitions */
.wheel-svg .quad .quad-fill {
  transition: fill 0.4s ease,
              stroke-width 0.3s ease,
              filter 0.35s ease;
}

/* Label transitions */
.wheel-svg .quad .quad-label {
  pointer-events: none;
  transition: fill 0.3s ease,
              font-weight 0.3s ease,
              transform 0.35s cubic-bezier(0.34, 1.36, 0.64, 1);
  transform-origin: 270px 270px;
}

/* ── HOVER (inactive only) ── */
.wheel-svg .quad:not(.active):hover {
  /* transform: scale(1.015); */
  filter: brightness(0.97);
}

.wheel-svg .quad:not(.active):hover .quad-fill {
  filter: drop-shadow(0 2px 8px rgba(33, 165, 94, 0.25));
}

/* ── ACTIVE STATE ── */
.wheel-svg .quad.active {
  transform: scale(1.04);                  /* lifts slightly outward from center */
}

.wheel-svg .quad.active .quad-fill {
  fill: url(#gradActive);
  stroke-width: 0;                         /* drop the green outline when active */
  filter: drop-shadow(0 6px 18px rgba(6, 45, 31, 0.28));
}

.wheel-svg .quad.active .quad-label {
  fill: #ffffff;
  font-weight: 600;
  transform: scale(1.04);                  /* keep label aligned with the lifted quad */
}

/* ── CLICK PULSE — quick squeeze when toggling ── */
.wheel-svg .quad.active {
  animation: quadPulse 0.45s cubic-bezier(0.34, 1.36, 0.64, 1);
}

@keyframes quadPulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.08); }
  100% { transform: scale(1.04); }
}

/* Allow SVG to overflow so the lifted quadrant doesn't get clipped */
.wheel-svg {
  overflow: visible;
}


.m-form {
    display: block;
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
 
.m-results {
    display: none;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
 
.m-contact-form {
    display: none;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
 
/* RESULTS MODE — show results, hide form & contact */
.modal-box.results-mode .m-form {
    display: none;
}
 
.modal-box.results-mode .m-results {
    display: block;
    transform: translateX(0);
    opacity: 1;
}
 
.modal-box.results-mode .m-contact-form {
    display: none;
    transform: translateX(100%);
}
 
/* CONTACT MODE — show contact form (slides in from right) */
.modal-box.results-mode.contact-mode .m-results {
    display: none;
    transform: translateX(-100%);
    opacity: 0;
}
 
.modal-box.results-mode.contact-mode .m-contact-form {
    display: block;
    transform: translateX(0);
    opacity: 1;
    animation: slideInFromRight 0.4s ease forwards;
}
 
/* ───────────────────────────────────────────────
   SLIDE ANIMATION
   ─────────────────────────────────────────────── */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
@keyframes slideOutToLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}
 
/* ───────────────────────────────────────────────
   FOOTER VISIBILITY
   Only one footer shows at a time based on mode
   ─────────────────────────────────────────────── */
.modal-footer.form-footer {
    display: flex;
}
 
.modal-footer.results-footer,
.modal-footer.contact-footer {
    display: none;
}
 
/* Results mode — show results footer */
.modal-box.results-mode .modal-footer.form-footer {
    display: none;
}
 
.modal-box.results-mode .modal-footer.results-footer {
    display: flex;
}
 
.modal-box.results-mode .modal-footer.contact-footer {
    display: none;
}
 
/* Contact mode — show contact footer only */
.modal-box.results-mode.contact-mode .modal-footer.results-footer {
    display: none;
}
 
.modal-box.results-mode.contact-mode .modal-footer.contact-footer {
    display: flex;
    justify-content: flex-start;
}
 
/* ───────────────────────────────────────────────
   CONTACT FORM CONTENT STYLING
   ─────────────────────────────────────────────── */
.m-contact-form {
    padding: 10px 0;
}
 
.m-contact-intro {
    margin-bottom: 24px;
}
 
.m-contact-intro .m-sp-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
 
.m-contact-intro .m-sp-text {
    font-size: 18px;
    color: #111827;
    line-height: 1.5;
    margin: 0;
}
 
.m-contact-form-wrap {
    margin-top: 16px;
}
 
/* CF7 form styling — adjust to match your modal theme */
.m-contact-form-wrap .wpcf7 form {
    margin: 0;
}
 
.m-contact-form-wrap .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 16px;
}

 
.m-contact-form-wrap input[type="text"]:focus,
.m-contact-form-wrap input[type="email"]:focus,
.m-contact-form-wrap input[type="tel"]:focus,
.m-contact-form-wrap textarea:focus,
.m-contact-form-wrap select:focus {
    outline: none;
    border-color: #149365;
    box-shadow: 0 0 0 3px rgba(20, 147, 101, 0.12);
}
 
.m-contact-form-wrap textarea {
    min-height: 110px;
    resize: vertical;
}
 
.m-contact-form-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
 
.m-contact-form-wrap .wpcf7-submit {
    background: #149365;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}
 
.m-contact-form-wrap .wpcf7-submit:hover {
    background: #0e6e4c;
}
 
.m-contact-form-wrap .wpcf7-submit:active {
    transform: translateY(1px);
}
 
.m-contact-form-wrap .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}
 
.m-contact-form-wrap .wpcf7-response-output {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 16px 0 0;
    font-size: 14px;
}
 
/* ───────────────────────────────────────────────
   BACK BUTTON STYLING (contact-footer)
   ─────────────────────────────────────────────── */
.modal-footer.contact-footer .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
 
.modal-footer.contact-footer .btn-back::before {
    content: "←";
    font-size: 16px;
    line-height: 1;
}