/* Help centre */
.hp-help-hero { background: var(--hp-ink); color: #fff; padding: clamp(50px,7vw,90px) 0; text-align: center; }
.hp-help-hero__h1 { font-family: var(--hp-font-display); font-size: clamp(38px,6vw,76px); line-height: .96; font-weight: 700; letter-spacing: -.03em; margin: 14px 0 22px; }
.hp-help-search { position: relative; max-width: 620px; margin: 0 auto; }
.hp-help-search input { width: 100%; padding: 18px 20px 18px 50px; border-radius: 14px; border: 0; font-size: 17px; color: var(--hp-ink); }
.hp-help-search .hp-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--hp-muted); }
.hp-help-quick { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hp-help-quick__ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 600; padding: 11px 16px; border-radius: 10px; font-size: 14px; }
.hp-help-main { padding-block: clamp(30px,5vw,60px); }
.hp-help-grid { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: clamp(18px,3vw,36px); align-items: start; }
@media (max-width: 820px) { .hp-help-grid { grid-template-columns: 1fr; } }
.hp-help-cats { position: sticky; top: calc(var(--hp-abar,0px) + var(--hp-hdr,68px) + 22px); display: flex; flex-direction: column; gap: 4px; }
@media (max-width: 820px) { .hp-help-cats { position: static; flex-direction: row; overflow-x: auto; } }
.hp-help-cat { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 12px 14px; border-radius: 10px; border: 0; background: transparent; font-size: 14.5px; font-weight: 700; color: var(--hp-ink); cursor: pointer; text-align: left; white-space: nowrap; }
.hp-help-cat.is-on { background: var(--hp-ink); color: #fff; }
.hp-help-cat__n { font-size: 12px; opacity: .7; }
.hp-faqs { display: grid; gap: 10px; }
.hp-faq { background: #fff; border-radius: 16px; border: 1px solid var(--hp-line-08); overflow: hidden; }
.hp-faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 20px; border: 0; background: none; text-align: left; cursor: pointer; font-size: 16.5px; font-weight: 700; color: var(--hp-ink); }
.hp-faq__cat { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--hp-saffron-ink-2); margin-bottom: 4px; }
.hp-faq__i { font-size: 24px; color: var(--hp-saffron-ink-2); transition: transform .25s; flex: 0 0 auto; }
.hp-faq.is-open .hp-faq__i { transform: rotate(45deg); }
.hp-faq__a { padding: 0 20px 18px; font-size: 15.5px; line-height: 1.65; color: var(--hp-text-2); }
.hp-faq-empty { text-align: center; background: #fff; border-radius: 16px; padding: 34px; border: 1px dashed var(--hp-line-16); }
.hp-help-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(40px,6vw,80px); }
/* Jumping to #contact must clear the announcement bar + sticky header so the "Send us a message"
   heading is fully visible, not tucked under the header. */
.hp-help-contact { scroll-margin-top: clamp(120px, calc(var(--hp-abar,0px) + var(--hp-hdr,68px) + 60px), 170px); }
@media (max-width: 820px) { .hp-help-contact { grid-template-columns: 1fr; } }
.hp-help-form-note { }
.hp-help-success { background: var(--hp-green-tint); color: #0B5A3D; padding: 18px; border-radius: 14px; font-weight: 700; }
.hp-help-channels { display: grid; gap: 12px; align-content: start; }
.hp-help-chan {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid var(--hp-line-16); border-radius: 16px; padding: 14px 16px;
  color: var(--hp-ink); text-decoration: none;
  transition: transform var(--hp-t, .2s), box-shadow var(--hp-t, .2s), border-color var(--hp-t, .2s), filter var(--hp-t, .2s);
}
.hp-help-chan:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--hp-shadow-card-hover, 0 16px 40px -20px rgba(14,27,36,.4)); border-color: var(--hp-line-08); }
.hp-help-chan:focus-visible { outline: 2px solid var(--hp-link); outline-offset: 2px; }
.hp-help-chan:active { transform: translateY(0); }
.hp-help-chan__ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--hp-line-08); color: var(--hp-ink); }
.hp-help-chan__ic .hp-icon { width: 24px; height: 24px; }
.hp-help-chan__t { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hp-help-chan__t strong { font-family: var(--hp-font-display); font-size: 15.5px; line-height: 1.2; letter-spacing: -.01em; }
.hp-help-chan__t span { font-size: 14px; color: var(--hp-text-2); overflow-wrap: anywhere; }
/* WhatsApp gets its brand fill; the rest get a tinted icon chip. */
.hp-help-chan--wa { background: var(--hp-whatsapp); color: var(--hp-whatsapp-ink); border-color: transparent; }
.hp-help-chan--wa .hp-help-chan__ic { background: rgba(255,255,255,.26); color: var(--hp-whatsapp-ink); }
.hp-help-chan--wa .hp-help-chan__t span { color: rgba(4,52,38,.82); }
.hp-help-chan--wa:hover { filter: brightness(.97); box-shadow: 0 16px 40px -18px rgba(18,140,80,.6); }
.hp-help-chan--call .hp-help-chan__ic { background: var(--hp-saffron-tint); color: var(--hp-saffron-ink); }
.hp-help-chan--email .hp-help-chan__ic { background: #E8F0FF; color: var(--hp-link); }
.hp-help-chan--gbp .hp-help-chan__ic { background: #fff; border: 1px solid var(--hp-line-16); }
.hp-help-map { border-radius: 18px; overflow: hidden; border: 1px solid var(--hp-line-08); background: #DDE5E8; }
.hp-help-map__cap { background: #fff; padding: 14px 16px; font-size: 14px; color: var(--hp-text-2); }

/* ==== Contact Form 7 integration — inherit the theme field styling ==== */
/* Message box: default 5 rows (set via the field's rows attr), vertical resize only — no horizontal
   drag that would break the two-column layout. */
.hp-help-contact textarea, .hp-help-contact .hp-textarea { resize: vertical; }
.hp-help-contact .wpcf7 .hp-field { display: block; }
.hp-help-contact .wpcf7-form-control-wrap { display: block; }
.hp-help-contact .wpcf7-not-valid-tip { color: #B42318; font-size: 12.5px; margin-top: 4px; display: block; }
.hp-help-contact .wpcf7-response-output { margin: 14px 0 0 !important; padding: 12px 14px !important; border-radius: 10px; font-size: 14px; }
.hp-help-contact .wpcf7 form.invalid .wpcf7-response-output,
.hp-help-contact .wpcf7 form.unaccepted .wpcf7-response-output { border: 1px solid #F0C0BA; background: #FDECEA; color: #8A1C1C; }
.hp-help-contact .wpcf7 form.sent .wpcf7-response-output { border: 1px solid #B7E0C8; background: #E9F7EF; color: #0B5A3D; }
.hp-help-contact .hp-consent-line { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--hp-text-2); margin: 6px 0 12px; }
.hp-help-contact .hp-consent-line .wpcf7-list-item { margin: 0; }
.hp-help-contact .wpcf7-spinner { margin: 0 0 0 10px; }
