/* Grace Family Practice — Feedback Popup */
.gfp-fb-overlay{
  position:fixed;inset:0;z-index:99998;
  background:rgba(14,42,35,.72);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  display:none;align-items:center;justify-content:center;
  padding:1.25rem;opacity:0;transition:opacity .25s ease;
}
.gfp-fb-overlay.is-open{display:flex;opacity:1}
.gfp-fb-modal{
  background:#fff;color:#1a2e2a;
  width:100%;max-width:580px;max-height:calc(100vh - 2.5rem);
  border-radius:18px;overflow:hidden;
  box-shadow:0 30px 70px -20px rgba(0,0,0,.35),0 2px 0 rgba(255,255,255,.6) inset;
  font-family:'DM Sans','Open Sans',system-ui,-apple-system,sans-serif;
  display:flex;flex-direction:column;
  transform:translateY(14px) scale(.985);transition:transform .25s ease;
}
.gfp-fb-overlay.is-open .gfp-fb-modal{transform:translateY(0) scale(1)}
.gfp-fb-head{
  display:flex;align-items:flex-start;justify-content:space-between;
  gap:1rem;padding:1.4rem 1.5rem .25rem;
}
.gfp-fb-head h2{
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.55rem;line-height:1.2;font-weight:600;color:#0E2A23;
  margin:0;
}
.gfp-fb-head p{margin:.4rem 0 0;font-size:.92rem;color:#4a5a55;line-height:1.45}
.gfp-fb-close{
  appearance:none;background:#f1ede5;border:0;border-radius:50%;
  width:36px;height:36px;display:grid;place-items:center;cursor:pointer;
  color:#0E2A23;flex:0 0 36px;transition:background .2s;
}
.gfp-fb-close:hover{background:#e6dfd1}
.gfp-fb-body{padding:1.1rem 1.5rem 1.5rem;overflow:auto}
.gfp-fb-row{display:grid;gap:.85rem;margin-bottom:.85rem}
@media(min-width:520px){.gfp-fb-row--2{grid-template-columns:1fr 1fr}}
.gfp-fb-field label{
  display:block;font-size:.74rem;font-weight:600;
  letter-spacing:.05em;text-transform:uppercase;color:#3a4a45;margin-bottom:.35rem;
}
.gfp-fb-field input,
.gfp-fb-field select,
.gfp-fb-field textarea{
  width:100%;box-sizing:border-box;
  background:#faf6ee;border:1px solid #d8d0bf;border-radius:10px;
  padding:.7rem .85rem;font:inherit;color:#1a2e2a;
  transition:border-color .15s,box-shadow .15s,background .15s;
}
.gfp-fb-field input:focus,
.gfp-fb-field select:focus,
.gfp-fb-field textarea:focus{
  outline:0;border-color:#0E2A23;background:#fff;
  box-shadow:0 0 0 3px rgba(14,42,35,.12);
}
.gfp-fb-field textarea{min-height:130px;resize:vertical}
.gfp-fb-hp{
  position:absolute!important;left:-9999px!important;
  width:1px!important;height:1px!important;
  opacity:0!important;pointer-events:none!important;
}
.gfp-fb-actions{
  display:flex;align-items:center;justify-content:space-between;
  gap:.85rem;margin-top:1rem;flex-wrap:wrap;
}
.gfp-fb-submit{
  appearance:none;border:0;cursor:pointer;
  background:#0E2A23;color:#fff;font-weight:600;font-size:.95rem;
  padding:.85rem 1.4rem;border-radius:999px;
  display:inline-flex;align-items:center;gap:.55rem;
  transition:transform .15s,background .2s,opacity .2s;
}
.gfp-fb-submit:hover{background:#13392f;transform:translateY(-1px)}
.gfp-fb-submit:disabled{opacity:.6;cursor:wait;transform:none}
.gfp-fb-privacy{font-size:.78rem;color:#6a766f;line-height:1.4;margin:0;flex:1 1 220px}
.gfp-fb-privacy a{color:#0E2A23;text-decoration:underline}
.gfp-fb-status{
  margin-top:.85rem;font-size:.9rem;line-height:1.45;
  padding:.7rem .9rem;border-radius:10px;display:none;
}
.gfp-fb-status.is-ok{display:block;background:#e8f3ec;color:#15473a;border:1px solid #b9dfcb}
.gfp-fb-status.is-err{display:block;background:#fbeaea;color:#7a1d1d;border:1px solid #f1c4c4}
.gfp-fb-success{display:none;text-align:center;padding:1.5rem .5rem 1rem}
.gfp-fb-success.is-visible{display:flex;flex-direction:column;align-items:center}
.gfp-fb-success-icon{
  width:72px;height:72px;border-radius:50%;
  background:#e8f3ec;color:#15473a;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1rem;
  animation:gfp-fb-pop .35s ease-out;
}
.gfp-fb-success-icon svg{width:36px;height:36px;display:block}
.gfp-fb-success h3{
  margin:0 0 .5rem;
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.55rem;line-height:1.2;color:#0E2A23;
}
.gfp-fb-success p{
  margin:0 auto;max-width:420px;
  color:#3a4a45;font-size:.95rem;line-height:1.55;
}
@keyframes gfp-fb-pop{
  0%{transform:scale(.6);opacity:0}
  60%{transform:scale(1.08);opacity:1}
  100%{transform:scale(1);opacity:1}
}
.gfp-fb-overlay.is-success .gfp-fb-head-copy{display:none}
.gfp-fb-overlay.is-success .gfp-fb-head{
  padding:1rem 1rem 0;
  justify-content:flex-end;
}
body.gfp-fb-locked{overflow:hidden}
