/* GOHSS Live Chat — self-contained, high-contrast, keyboard accessible */
.gchat-launcher{position:fixed;right:20px;bottom:20px;z-index:9998;display:flex;
  flex-direction:column;gap:12px;align-items:flex-end}
.gchat-btn{display:flex;align-items:center;gap:.6rem;min-height:56px;padding:0 1.25rem;
  border:0;border-radius:999px;font:600 1rem/1 Inter,system-ui,sans-serif;cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.22);transition:transform .18s}
.gchat-btn:hover{transform:translateY(-3px)}
.gchat-btn:focus-visible{outline:3px solid #B8842B;outline-offset:3px}
.gchat-btn--chat{background:#0A5C58;color:#fff}
.gchat-btn--wa{background:#25D366;color:#062B18}
.gchat-btn svg{flex:0 0 auto}

.gchat-panel{position:fixed;right:20px;bottom:96px;z-index:9999;width:min(400px,calc(100vw - 32px));
  max-height:min(640px,calc(100vh - 128px));display:none;flex-direction:column;
  background:#fff;border-radius:20px;overflow:hidden;
  box-shadow:0 26px 60px rgba(5,59,59,.28);font:400 16px/1.6 Inter,system-ui,sans-serif;color:#3A4B49}
.gchat-panel[data-open="true"]{display:flex}
@media(max-width:520px){
  .gchat-panel{right:8px;left:8px;bottom:8px;width:auto;max-height:calc(100vh - 16px)}
  .gchat-launcher{right:12px;bottom:12px}
}

.gchat-head{background:#053B3B;color:#fff;padding:1rem 1.15rem;display:flex;
  justify-content:space-between;align-items:flex-start;gap:1rem}
.gchat-head h2{margin:0;font:600 1.05rem/1.3 Fraunces,Georgia,serif;color:#fff}
.gchat-head p{margin:.15rem 0 0;font-size:.85rem;color:#9FCFCA}
.gchat-close{all:unset;cursor:pointer;width:36px;height:36px;display:grid;place-items:center;
  border-radius:50%;color:#fff;font-size:1.3rem}
.gchat-close:hover{background:rgba(255,255,255,.15)}
.gchat-close:focus-visible{outline:3px solid #D9A441;outline-offset:2px}

.gchat-log{flex:1 1 auto;overflow-y:auto;padding:1rem;background:#F6FAF9;
  display:flex;flex-direction:column;gap:.75rem}
.gchat-msg{max-width:88%;padding:.7rem .95rem;border-radius:16px;font-size:.97rem}
.gchat-msg--bot{background:#fff;border:1px solid #DCE6E4;border-bottom-left-radius:4px;align-self:flex-start}
.gchat-msg--user{background:#0A5C58;color:#fff;border-bottom-right-radius:4px;align-self:flex-end}
.gchat-msg--alert{background:#FDECEC;border-color:#EDB4B4;color:#6D1414;font-weight:600}
.gchat-msg--warn{background:#FFF6E3;border-color:#E8CE93;color:#5A3E00}
.gchat-msg a{color:inherit;font-weight:600}

.gchat-chips{display:flex;flex-wrap:wrap;gap:.5rem;padding:0 1rem .75rem;background:#F6FAF9}
.gchat-chip{all:unset;cursor:pointer;background:#fff;border:1.5px solid #0A5C58;color:#0A5C58;
  border-radius:999px;padding:.5rem .9rem;font-size:.88rem;font-weight:600;min-height:40px;
  display:inline-flex;align-items:center}
.gchat-chip:hover{background:#E3F3F1}
.gchat-chip:focus-visible{outline:3px solid #B8842B;outline-offset:2px}

.gchat-typing{align-self:flex-start;display:flex;gap:4px;padding:.7rem .95rem}
.gchat-typing span{width:8px;height:8px;border-radius:50%;background:#7FC3BE;
  animation:gchat-bounce 1.2s infinite}
.gchat-typing span:nth-child(2){animation-delay:.15s}
.gchat-typing span:nth-child(3){animation-delay:.3s}
@keyframes gchat-bounce{0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-6px)}}
@media (prefers-reduced-motion:reduce){.gchat-typing span{animation:none}}

.gchat-form{display:flex;gap:.5rem;padding:.75rem;border-top:1px solid #DCE6E4;background:#fff}
.gchat-form input[type="text"]{flex:1;min-height:48px;padding:.6rem .85rem;font:inherit;
  border:2px solid #DCE6E4;border-radius:12px;color:#12211F}
.gchat-form input:focus{border-color:#0E7C76;outline:3px solid #B8842B;outline-offset:1px}
.gchat-send{all:unset;cursor:pointer;background:#0A5C58;color:#fff;min-width:48px;min-height:48px;
  border-radius:12px;display:grid;place-items:center}
.gchat-send:focus-visible{outline:3px solid #B8842B;outline-offset:2px}

.gchat-lead{padding:1rem;border-top:1px solid #DCE6E4;background:#fff;display:none}
.gchat-lead[data-open="true"]{display:block}
.gchat-lead label{display:block;font-weight:600;color:#12211F;font-size:.9rem;margin:.6rem 0 .25rem}
.gchat-lead input[type="text"]{width:100%;min-height:44px;padding:.55rem .8rem;font:inherit;
  border:2px solid #DCE6E4;border-radius:10px}
.gchat-lead .row{display:flex;gap:.6rem;align-items:flex-start;margin-top:.7rem;font-size:.88rem}
.gchat-lead .row input{width:22px;height:22px;flex:0 0 22px}
.gchat-lead button{margin-top:.8rem;width:100%;min-height:48px;border:0;border-radius:999px;
  background:#D9A441;color:#053B3B;font-weight:700;cursor:pointer;font-size:1rem}

.gchat-foot{padding:.6rem 1rem;background:#053B3B;color:#9FCFCA;font-size:.78rem;text-align:center}
.gchat-sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
