.elementor-97 .elementor-element.elementor-element-225fd02{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//*
 * HelpHer.ng — Public Shortcode Pages CSS
 * Covers: marketplace, requests board, register helper,
 *         request service, helper profile, login, dashboard, contact
 * Assumes design system CSS vars already present from header.html
 */

/* ── SHARED PAGE SCAFFOLDING ──────────────────────────────────────────────── */
[id^="helpher-"] { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); }

.hh-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.hh-section   { padding: 72px 0; position: relative; z-index: 1; }
.hh-section-sm{ padding: 48px 0; position: relative; z-index: 1; }
.hh-section-cream { background: var(--cream); }

/* ── PAGE HERO ────────────────────────────────────────────────────────────── */
.hh-page-hero {
  padding: calc(var(--nav-h) + 48px) 0 64px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hh-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  filter: grayscale(0.3);
  z-index: 0;
}
.hh-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}
.hh-page-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hh-page-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 16px;
}
.hh-page-title span { color: var(--pink); }
.hh-page-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── SPINNER ──────────────────────────────────────────────────────────────── */
.hh-spinner-wrap { display:flex; align-items:center; justify-content:center; padding:80px 0; flex-direction:column; gap:14px; }
.hh-spinner { width:36px; height:36px; border:3px solid var(--cream-border); border-top-color:var(--pink); border-radius:50%; animation:hh-spin 0.7s linear infinite; }
@keyframes hh-spin { to { transform:rotate(360deg); } }
.hh-spinner-label { font-size:13px; color:var(--muted); }

/* ── FILTER BAR ───────────────────────────────────────────────────────────── */
.hh-filters {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  box-shadow: var(--shadow-xs);
}
.hh-filter-input,
.hh-filter-select {
  flex: 1;
  min-width: 150px;
  border: 1.5px solid var(--cream-border);
  border-radius: 12px;
  padding: 11px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.4;
}
.hh-filter-input:focus, .hh-filter-select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
  background: var(--white);
}
.hh-filter-input::placeholder { color: var(--muted); }
.hh-filter-btn {
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 11px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
  white-space: nowrap;
}
.hh-filter-btn:hover { background: var(--pink-dark); transform: translateY(-1px); }

/* ── RESULTS HEADER ───────────────────────────────────────────────────────── */
.hh-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.hh-results-count { font-size: 14px; color: var(--muted); }
.hh-results-count strong { color: var(--text); font-weight: 700; }

/* ── HELPER CARDS (marketplace) ───────────────────────────────────────────── */
.hh-helpers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.hh-helper-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.hh-helper-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.hh-helper-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(183,47,92,0.2); }
.hh-helper-card:hover::before { opacity: 1; }

.hh-card-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}
.hh-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.hh-helper-card:hover .hh-card-photo img { transform: scale(1.05); }

.hh-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream), var(--cream-border));
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px; font-weight: 900; color: var(--pink);
}

.hh-avail-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}
.hh-avail-badge.available  { background: rgba(34,197,94,0.9);   color: white; }
.hh-avail-badge.unavailable{ background: rgba(120,113,108,0.85); color: white; }

.hh-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.hh-card-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.01em; }
.hh-card-location { display:flex; align-items:center; gap:4px; font-size:12px; color:var(--muted); margin-bottom:12px; }
.hh-card-location svg { width:12px; height:12px; stroke:var(--muted); fill:none; flex-shrink:0; }
.hh-card-tags { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:14px; }

.hh-tag {
  font-size: 10px; font-weight: 600;
  color: var(--pink); background: var(--pink-soft);
  padding: 3px 9px; border-radius: var(--radius-pill);
}
.hh-tag.orange { color: var(--orange); background: var(--orange-soft); }
.hh-tag.muted  { color: var(--muted); background: rgba(120,113,108,0.08); }

.hh-card-footer {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--cream-border);
  display: flex; align-items: center; justify-content: space-between;
}
.hh-rating { display:flex; align-items:center; gap:4px; font-size:13px; font-weight:600; color:var(--text); }
.hh-stars  { color:var(--orange); font-size:11px; }
.hh-rating-count { font-size:11px; color:var(--muted); font-weight:400; }
.hh-card-rate { font-size:13px; font-weight:700; color:var(--pink); }

/* ── REQUEST CARDS (board) ────────────────────────────────────────────────── */
.hh-requests-grid { display:flex; flex-direction:column; gap:20px; margin-bottom:48px; }

.hh-request-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 40px;
  align-items: start;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.hh-request-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--pink), var(--orange));
  opacity: 0;
  transition: opacity 0.2s;
}
.hh-request-card:hover { box-shadow: var(--shadow); border-color: rgba(183,47,92,0.18); transform: translateY(-2px); }
.hh-request-card:hover::before { opacity: 1; }

.hh-req-service-badge {
  display: inline-flex; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink); background: var(--pink-soft);
  padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 10px;
}
.hh-req-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.hh-req-meta { display:flex; flex-wrap:wrap; gap:16px; font-size:13px; color:var(--muted); }
.hh-req-meta-item { display:flex; align-items:center; gap:5px; }
.hh-req-meta-item svg { width:13px; height:13px; stroke:currentColor; fill:none; flex-shrink:0; }
.hh-req-body-note { margin-top:10px; font-size:13px; color:var(--text-soft); line-height:1.6; }

.hh-req-action { display:flex; flex-direction:column; align-items:flex-end; gap:10px; flex-shrink:0; }
.hh-req-budget { font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:900; color:var(--text); white-space:nowrap; }
.hh-req-applicants { font-size:12px; color:var(--muted); background:var(--cream); border:1px solid var(--cream-border); border-radius:var(--radius-pill); padding:4px 10px; }
.hh-req-time { font-size:11px; color:var(--muted); }

/* ── MODAL ────────────────────────────────────────────────────────────────── */
.hh-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(28,25,23,0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: hh-fadeIn 0.2s ease;
}
@keyframes hh-fadeIn { from { opacity:0; } to { opacity:1; } }

.hh-modal {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  position: relative;
  animation: hh-slideUp 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes hh-slideUp { from { transform: translateY(20px) scale(0.97); opacity:0; } }

.hh-modal::-webkit-scrollbar { width: 4px; }
.hh-modal::-webkit-scrollbar-thumb { background: var(--cream-border); border-radius: 4px; }

.hh-modal-title { font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:800; color:var(--text); margin-bottom:6px; letter-spacing:-0.02em; }
.hh-modal-sub   { font-size:13px; color:var(--muted); margin-bottom:24px; line-height:1.55; }
.hh-modal-close {
  position:absolute; top:16px; right:16px;
  width:32px; height:32px; background:var(--cream); border:1px solid var(--cream-border);
  border-radius:50%; font-size:18px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center; color:var(--muted); transition:all 0.15s;
}
.hh-modal-close:hover { background:var(--cream-border); color:var(--text); }

/* Request detail drawer */
.hh-drawer-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--cream-border); }
.hh-drawer-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.hh-drawer-label { font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
.hh-drawer-value { font-size:15px; font-weight:500; color:var(--text); line-height:1.6; }

/* ── FORMS ────────────────────────────────────────────────────────────────── */
.hh-form-layout { display:grid; grid-template-columns:1fr 340px; gap:40px; align-items:start; }

.hh-form-section {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 22px;
  padding: 36px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}
.hh-form-section-title { font-family:'Bricolage Grotesque',sans-serif; font-size:18px; font-weight:700; color:var(--text); margin-bottom:4px; letter-spacing:-0.01em; }
.hh-form-section-sub   { font-size:13px; color:var(--muted); margin-bottom:24px; line-height:1.5; }
.hh-form-divider { height:1px; background:var(--cream-border); margin:20px 0; }

.hh-field { display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.hh-field label { font-size:12px; font-weight:600; color:var(--text-soft); letter-spacing:0.02em; }
.hh-field label .req { color:var(--pink); }

.hh-input,
.hh-select,
.hh-textarea {
  border: 1.5px solid var(--cream-border);
  border-radius: 13px;
  padding: 12px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none; -webkit-appearance: none;
  width: 100%;
  line-height: 1.4;
}
.hh-input:focus, .hh-select:focus, .hh-textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.hh-input::placeholder, .hh-textarea::placeholder { color: var(--muted); font-weight: 400; }
.hh-textarea { min-height: 120px; resize: vertical; line-height: 1.65; }

.hh-row   { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.hh-row-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; }

/* Checkbox grid */
.hh-check-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(180px,1fr)); gap:10px; }
.hh-check-item {
  display:flex; align-items:center; gap:10px;
  background:var(--cream); border:1.5px solid var(--cream-border);
  border-radius:12px; padding:12px 14px;
  cursor:pointer; transition:border-color 0.15s, background 0.15s;
  user-select:none;
}
.hh-check-item:hover { border-color:rgba(183,47,92,0.3); background:rgba(183,47,92,0.04); }
.hh-check-item.checked { border-color:var(--pink); background:var(--pink-soft); }
.hh-check-item input[type="checkbox"] { width:16px; height:16px; accent-color:var(--pink); flex-shrink:0; }
.hh-check-item span { font-size:13px; font-weight:500; color:var(--text); line-height:1.3; }

/* File upload */
.hh-file-upload {
  border:2px dashed var(--cream-border); border-radius:14px;
  padding:28px; text-align:center; cursor:pointer;
  transition:border-color 0.2s, background 0.2s;
  background:var(--cream);
}
.hh-file-upload:hover { border-color:var(--pink); background:rgba(183,47,92,0.03); }
.hh-file-upload.has-file { border-color:#22c55e; background:rgba(34,197,94,0.05); }
.hh-file-upload p { font-size:13px; color:var(--muted); margin-top:8px; }
.hh-file-upload strong { font-size:14px; color:var(--text); display:block; margin-bottom:4px; }
.hh-file-upload input[type="file"] { display:none; }

/* Consent */
.hh-consent { display:flex; align-items:flex-start; gap:12px; font-size:13px; color:var(--text-soft); line-height:1.55; cursor:pointer; margin-bottom:16px; }
.hh-consent input[type="checkbox"] { width:18px; height:18px; accent-color:var(--pink); flex-shrink:0; margin-top:1px; }

/* Submit button */
.hh-submit-btn {
  width:100%; background:var(--pink); color:white; border:none; border-radius:14px;
  padding:16px; font-family:'Plus Jakarta Sans',sans-serif; font-size:15px; font-weight:700;
  cursor:pointer; transition:background 0.15s, transform 0.1s, box-shadow 0.15s;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.hh-submit-btn:hover:not(:disabled) { background:var(--pink-dark); transform:translateY(-1px); box-shadow:0 8px 28px var(--pink-glow); }
.hh-submit-btn:disabled { opacity:0.55; cursor:not-allowed; transform:none; }
.hh-submit-btn svg { width:16px; height:16px; stroke:currentColor; fill:none; }

/* Form sidebar */
.hh-form-sidebar { position:sticky; top:96px; }
.hh-sidebar-card { background:var(--cream); border:1px solid var(--cream-border); border-radius:20px; padding:28px; margin-bottom:20px; }
.hh-sidebar-card-pink { background:linear-gradient(135deg,var(--pink),var(--pink-dark)); border-color:var(--pink); color:white; }
.hh-sidebar-title { font-family:'Bricolage Grotesque',sans-serif; font-size:16px; font-weight:700; color:var(--text); margin-bottom:16px; }
.hh-sidebar-card-pink .hh-sidebar-title { color:white; }
.hh-benefit-list { display:flex; flex-direction:column; gap:12px; }
.hh-benefit-item { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--text-soft); line-height:1.5; }
.hh-sidebar-card-pink .hh-benefit-item { color:rgba(255,255,255,0.85); }
.hh-benefit-dot { width:8px; height:8px; background:var(--pink); border-radius:50%; flex-shrink:0; margin-top:5px; }
.hh-sidebar-card-pink .hh-benefit-dot { background:rgba(255,255,255,0.7); }
.hh-step-list  { display:flex; flex-direction:column; gap:14px; }
.hh-step-item-sm { display:flex; gap:12px; align-items:flex-start; }
.hh-step-num-sm { width:26px; height:26px; background:var(--pink-soft); border-radius:8px; display:flex; align-items:center; justify-content:center; font-family:'Bricolage Grotesque',sans-serif; font-size:12px; font-weight:800; color:var(--pink); flex-shrink:0; }
.hh-step-text-sm { font-size:13px; color:var(--text-soft); line-height:1.5; }

/* ── BUTTONS (shared) ─────────────────────────────────────────────────────── */
.hh-btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Plus Jakarta Sans',sans-serif; font-size:14px; font-weight:700;
  padding:11px 20px; border-radius:var(--radius-pill); border:none; cursor:pointer;
  transition:all 0.15s; text-decoration:none; white-space:nowrap;
}
.hh-btn-primary   { background:var(--pink); color:white; }
.hh-btn-primary:hover  { background:var(--pink-dark); transform:translateY(-1px); box-shadow:0 6px 20px var(--pink-glow); }
.hh-btn-secondary { background:var(--cream); color:var(--text); border:1.5px solid var(--cream-border); }
.hh-btn-secondary:hover{ border-color:var(--pink); color:var(--pink); background:var(--pink-soft); }
.hh-btn-orange    { background:var(--orange); color:white; }
.hh-btn-orange:hover   { background:#d95a2b; transform:translateY(-1px); box-shadow:0 6px 20px var(--orange-glow); }
.hh-btn-ghost     { background:transparent; color:var(--pink); border:1.5px solid var(--pink); }
.hh-btn-ghost:hover    { background:var(--pink-soft); }
.hh-btn-danger    { background:#fef2f2; color:#dc2626; border:1.5px solid #fecaca; }
.hh-btn-danger:hover   { background:#fee2e2; }
.hh-btn-sm { font-size:12px; padding:8px 14px; }
.hh-btn-lg { font-size:16px; padding:14px 28px; }
.hh-btn:disabled { opacity:0.5; cursor:not-allowed; transform:none; }
.hh-btn svg { width:14px; height:14px; stroke:currentColor; fill:none; flex-shrink:0; }

/* ── PAGINATION ───────────────────────────────────────────────────────────── */
.hh-pagination { display:flex; justify-content:center; align-items:center; gap:6px; margin-top:48px; }
.hh-page-btn { width:40px; height:40px; border-radius:12px; border:1.5px solid var(--cream-border); background:var(--white); color:var(--text-soft); font-family:'Plus Jakarta Sans',sans-serif; font-size:14px; font-weight:600; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all 0.15s; }
.hh-page-btn:hover { border-color:var(--pink); color:var(--pink); }
.hh-page-btn.active { background:var(--pink); border-color:var(--pink); color:white; }
.hh-page-btn:disabled { opacity:0.35; cursor:not-allowed; }

/* ── EMPTY STATE ──────────────────────────────────────────────────────────── */
.hh-empty { text-align:center; padding:80px 32px; color:var(--muted); }
.hh-empty svg { width:48px; height:48px; stroke:var(--cream-border); fill:none; margin:0 auto 16px; display:block; }
.hh-empty h3 { font-family:'Bricolage Grotesque',sans-serif; font-size:20px; font-weight:700; color:var(--text); margin-bottom:8px; }
.hh-empty p { font-size:14px; line-height:1.6; margin-bottom:24px; }

/* ── AUTH GATE ────────────────────────────────────────────────────────────── */
.hh-auth-gate { background:var(--cream); border:1px solid var(--cream-border); border-radius:28px; padding:64px 40px; text-align:center; max-width:520px; margin:80px auto; }
.hh-auth-gate-icon { width:64px; height:64px; background:var(--pink-soft); border-radius:20px; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
.hh-auth-gate-icon svg { width:28px; height:28px; stroke:var(--pink); fill:none; }
.hh-auth-gate h2 { font-family:'Bricolage Grotesque',sans-serif; font-size:24px; font-weight:800; color:var(--text); margin-bottom:10px; letter-spacing:-0.02em; }
.hh-auth-gate p { font-size:14px; color:var(--muted); margin-bottom:28px; line-height:1.65; }
.hh-auth-gate-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── STATUS PILLS ─────────────────────────────────────────────────────────── */
.hh-status { display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:700; padding:4px 10px; border-radius:var(--radius-pill); text-transform:uppercase; letter-spacing:0.06em; }
.hh-status-pending  { background:rgba(245,158,11,0.12); color:#b45309; }
.hh-status-accepted { background:rgba(34,197,94,0.12);  color:#15803d; }
.hh-status-declined { background:rgba(239,68,68,0.12);  color:#b91c1c; }
.hh-status-success  { background:rgba(34,197,94,0.12);  color:#15803d; }
.hh-status-failed   { background:rgba(239,68,68,0.12);  color:#b91c1c; }
.hh-status-open     { background:rgba(183,47,92,0.1);   color:var(--pink); }
.hh-status-filled   { background:rgba(59,130,246,0.1);  color:#1d4ed8; }
.hh-status-closed   { background:rgba(120,113,108,0.1); color:var(--muted); }
.hh-status-approved { background:rgba(34,197,94,0.12);  color:#15803d; }
.hh-status-rejected { background:rgba(239,68,68,0.12);  color:#b91c1c; }
.hh-status-suspended{ background:rgba(245,158,11,0.12); color:#b45309; }

/* ── DASHBOARD ────────────────────────────────────────────────────────────── */
.hh-dash-wrap { background:var(--cream); min-height:80vh; padding-bottom:80px; position:relative; z-index:1; }

.hh-dash-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  padding: calc(var(--nav-h) + 20px) 0 0;
  margin-bottom: 40px;
  position: sticky;
  top: calc(var(--nav-h) + 0px);
  z-index: 100;
}
.hh-dash-topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.hh-dash-greeting { padding-bottom: 0; }
.hh-dash-greeting-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 2px;
}
.hh-dash-greeting-name span { color: var(--pink); }
.hh-dash-greeting-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.hh-dash-tabs {
  display: flex; gap: 2px;
  background: var(--cream); border-radius: var(--radius-pill);
  padding: 4px; margin-bottom: 20px;
}
.hh-dash-tab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600; color: var(--muted);
  background: transparent; border: none;
  padding: 9px 16px; border-radius: var(--radius-pill); cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.hh-dash-tab.active { background: var(--white); color: var(--pink); box-shadow: var(--shadow-xs); }

/* KPI stat cards */
.hh-kpi-row { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:32px; }
.hh-kpi-card {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: 18px; padding: 20px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.hh-kpi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hh-kpi-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}
.hh-kpi-icon { width:40px; height:40px; border-radius:12px; background:var(--pink-soft); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.hh-kpi-icon svg { width:18px; height:18px; stroke:var(--pink); fill:none; }
.hh-kpi-val { font-family:'Bricolage Grotesque',sans-serif; font-size:30px; font-weight:900; color:var(--text); line-height:1; margin-bottom:4px; }
.hh-kpi-val span { color:var(--pink); }
.hh-kpi-label { font-size:12px; color:var(--muted); font-weight:500; }

/* Card panels */
.hh-panel {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: 22px; overflow: hidden; margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.hh-panel-header {
  background: var(--cream); padding: 18px 24px;
  border-bottom: 1px solid var(--cream-border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.hh-panel-title { font-family:'Bricolage Grotesque',sans-serif; font-size:16px; font-weight:700; color:var(--text); }
.hh-panel-body  { padding: 0; }

/* Table */
table.hh-table { width:100%; border-collapse:collapse; }
table.hh-table th { padding:12px 20px; text-align:left; font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); background:var(--cream); border-bottom:1px solid var(--cream-border); }
table.hh-table td { padding:14px 20px; font-size:13px; color:var(--text-soft); border-bottom:1px solid var(--cream-border); vertical-align:middle; }
table.hh-table tr:last-child td { border-bottom:none; }
table.hh-table tbody tr { transition:background 0.12s; }
table.hh-table tbody tr:hover { background:rgba(253,248,245,0.8); }

/* Request expandable row */
.hh-req-row { cursor:pointer; }
.hh-req-row.expanded { background:rgba(183,47,92,0.03); }
.hh-req-expand-icon { width:24px; height:24px; background:var(--cream); border-radius:8px; display:flex; align-items:center; justify-content:center; transition:transform 0.2s,background 0.2s; }
.hh-req-expand-icon svg { width:14px; height:14px; stroke:var(--muted); fill:none; }
.hh-req-row.expanded .hh-req-expand-icon { background:var(--pink-soft); transform:rotate(90deg); }
.hh-req-row.expanded .hh-req-expand-icon svg { stroke:var(--pink); }

.hh-applicants-panel { padding:16px 24px 20px; background:var(--cream); border-top:1px solid var(--cream-border); display:none; }
.hh-applicants-panel.open { display:block; }
.hh-applicants-title { font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); margin-bottom:14px; }

.hh-applicant-row {
  background: var(--white); border: 1px solid var(--cream-border); border-radius:14px;
  padding:16px 20px; margin-bottom:10px; display:grid;
  grid-template-columns:40px 1fr auto; gap:14px; align-items:center;
  transition:box-shadow 0.15s, border-color 0.15s;
}
.hh-applicant-row:hover { box-shadow:var(--shadow-sm); border-color:rgba(183,47,92,0.2); }
.hh-applicant-avatar { width:40px; height:40px; border-radius:50%; background:var(--pink-soft); display:flex; align-items:center; justify-content:center; font-family:'Bricolage Grotesque',sans-serif; font-size:16px; font-weight:800; color:var(--pink); flex-shrink:0; overflow:hidden; }
.hh-applicant-avatar img { width:100%; height:100%; object-fit:cover; }
.hh-applicant-name { font-size:14px; font-weight:700; color:var(--text); margin-bottom:2px; }
.hh-applicant-meta { font-size:12px; color:var(--muted); margin-bottom:5px; }
.hh-applicant-note { font-size:13px; color:var(--text-soft); line-height:1.6; font-style:italic; }
.hh-applicant-actions { display:flex; flex-direction:column; gap:8px; align-items:flex-end; }

.hh-contact-unlocked {
  padding:10px 14px; background:rgba(34,197,94,0.08);
  border:1px solid rgba(34,197,94,0.2); border-radius:12px;
  font-size:13px; color:#15803d; font-weight:600;
  display:flex; flex-direction:column; gap:4px;
}
.hh-contact-unlocked a { color:#15803d; text-decoration:none; }
.hh-contact-unlocked a:hover { text-decoration:underline; }

/* Profile edit (helper dashboard) */
.hh-profile-edit-grid { display:grid; grid-template-columns:260px 1fr; gap:32px; align-items:start; padding:24px; }
.hh-profile-photo-preview { border-radius:18px; overflow:hidden; aspect-ratio:1; background:var(--cream); margin-bottom:16px; }
.hh-profile-photo-preview img { width:100%; height:100%; object-fit:cover; }
.hh-avail-toggle { display:flex; align-items:center; gap:12px; padding:16px 20px; background:var(--cream); border-radius:14px; border:1px solid var(--cream-border); cursor:pointer; transition:all 0.15s; }
.hh-avail-toggle.on  { background:rgba(34,197,94,0.08);  border-color:rgba(34,197,94,0.3); }
.hh-avail-toggle.off { background:rgba(120,113,108,0.07); border-color:rgba(120,113,108,0.2); }
.hh-toggle-dot { width:40px; height:22px; border-radius:11px; background:var(--cream-border); position:relative; transition:background 0.2s; flex-shrink:0; }
.hh-toggle-dot::after { content:''; position:absolute; width:18px; height:18px; border-radius:50%; background:white; top:2px; left:2px; transition:transform 0.2s; box-shadow:0 1px 4px rgba(0,0,0,0.15); }
.hh-avail-toggle.on  .hh-toggle-dot { background:#22c55e; }
.hh-avail-toggle.on  .hh-toggle-dot::after { transform:translateX(18px); }
.hh-toggle-text strong { font-size:14px; font-weight:700; display:block; margin-bottom:1px; }
.hh-toggle-text span { font-size:12px; color:var(--muted); }

/* ── HELPER PROFILE PAGE ──────────────────────────────────────────────────── */
.hh-profile-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-border);
  padding: calc(var(--nav-h) + 48px) 0 80px;
  position: relative; overflow: hidden; z-index: 1;
}
.hh-profile-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.05; filter: grayscale(0.2); z-index: 0;
}
.hh-profile-grid { display:grid; grid-template-columns:360px 1fr; gap:60px; align-items:start; position:relative; z-index:1; }
.hh-profile-photo-wrap { position:sticky; top:calc(var(--nav-h) + 24px); }
.hh-profile-photo { border-radius:24px; overflow:hidden; aspect-ratio:3/4; background:var(--cream-border); margin-bottom:20px; box-shadow:var(--shadow-lg); }
.hh-profile-photo img { width:100%; height:100%; object-fit:cover; }

.hh-profile-book-card { background:var(--white); border:1px solid var(--cream-border); border-radius:20px; padding:24px; box-shadow:var(--shadow-sm); }
.hh-profile-book-fee-label { font-size:11px; color:var(--muted); font-weight:600; margin-bottom:4px; text-transform:uppercase; letter-spacing:0.08em; }
.hh-profile-book-fee { font-family:'Bricolage Grotesque',sans-serif; font-size:32px; font-weight:900; color:var(--text); margin-bottom:4px; }
.hh-profile-book-fee span { font-size:16px; color:var(--muted); font-weight:500; }
.hh-profile-book-note { font-size:11px; color:var(--muted); margin-bottom:18px; line-height:1.5; }

.hh-profile-info h1 { font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(32px,4vw,52px); font-weight:900; color:var(--text); letter-spacing:-0.025em; margin-bottom:14px; }
.hh-profile-badges { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px; }
.hh-badge { display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:600; padding:5px 12px; border-radius:var(--radius-pill); }
.hh-badge-green { background:rgba(34,197,94,0.1); color:#16a34a; }
.hh-badge-blue  { background:rgba(59,130,246,0.1); color:#2563eb; }
.hh-badge-pink  { background:var(--pink-soft); color:var(--pink); }
.hh-badge-muted { background:rgba(120,113,108,0.1); color:var(--muted); }
.hh-badge svg   { width:10px; height:10px; stroke:currentColor; fill:none; }

.hh-profile-meta { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:28px; }
.hh-meta-item { }
.hh-meta-label { font-size:11px; color:var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:3px; }
.hh-meta-value { font-size:15px; font-weight:600; color:var(--text); }

.hh-profile-bio { font-size:15px; color:var(--text-soft); line-height:1.8; margin-bottom:28px; }
.hh-profile-services-title { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); margin-bottom:12px; }
.hh-profile-services { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; }
.hh-profile-actions { display:flex; gap:12px; flex-wrap:wrap; }

/* ── LOGIN PAGE ───────────────────────────────────────────────────────────── */
.hh-login-wrap {
  min-height: 85vh; display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 60px) 32px 80px;
  position: relative; z-index: 1;
}
.hh-login-card {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: 28px; padding: 48px 44px;
  width: 100%; max-width: 480px;
  box-shadow: var(--shadow-lg);
}
.hh-login-logo { width: 110px; margin-bottom: 28px; }
.hh-login-tabs { display:flex; background:var(--cream); border-radius:var(--radius-pill); padding:4px; margin-bottom:28px; }
.hh-login-tab { flex:1; text-align:center; font-family:'Plus Jakarta Sans',sans-serif; font-size:13px; font-weight:600; padding:10px; border-radius:var(--radius-pill); cursor:pointer; transition:all 0.2s; color:var(--muted); border:none; background:transparent; }
.hh-login-tab.active { background:var(--white); color:var(--pink); box-shadow:var(--shadow-xs); }
.hh-panel { display:none; }
.hh-panel.active { display:block; }

/* ── CONTACT PAGE ─────────────────────────────────────────────────────────── */
.hh-contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:40px; align-items:start; }
.hh-contact-info-card {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 24px; padding: 40px 36px; color: white;
  position: sticky; top: calc(var(--nav-h) + 24px);
  overflow: hidden;
}
.hh-contact-info-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("https://proposals.scalebeyond.digital/wp-content/uploads/2026/06/smiling-woman-cleaning-horizontal.png");
  background-size: cover; background-position: center bottom;
  opacity: 0.08; mix-blend-mode: overlay;
}
.hh-contact-info-card > * { position: relative; z-index: 1; }
.hh-contact-info-card h2 { font-family:'Bricolage Grotesque',sans-serif; font-size:26px; font-weight:800; margin-bottom:8px; letter-spacing:-0.02em; }
.hh-contact-info-card p  { font-size:14px; color:rgba(255,255,255,0.75); margin-bottom:32px; line-height:1.6; }
.hh-contact-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.hh-contact-icon { width:36px; height:36px; background:rgba(255,255,255,0.12); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hh-contact-icon svg { width:16px; height:16px; stroke:white; fill:none; }
.hh-contact-label { font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.55); margin-bottom:2px; }
.hh-contact-value { font-size:14px; color:white; font-weight:500; }
.hh-contact-value a { color:white; text-decoration:none; }
.hh-contact-value a:hover { text-decoration:underline; }
.hh-contact-social { display:flex; gap:10px; margin-top:28px; }
.hh-contact-social a { width:36px; height:36px; background:rgba(255,255,255,0.1); border-radius:10px; display:flex; align-items:center; justify-content:center; transition:background 0.15s; }
.hh-contact-social a:hover { background:rgba(255,255,255,0.25); }
.hh-contact-social a svg { width:16px; height:16px; stroke:white; fill:none; }
.hh-contact-form-card { background:var(--white); border:1px solid var(--cream-border); border-radius:24px; padding:40px 36px; box-shadow:var(--shadow-sm); }
.hh-contact-form-card h2 { font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:800; color:var(--text); margin-bottom:6px; letter-spacing:-0.02em; }
.hh-contact-form-card p  { font-size:13px; color:var(--muted); margin-bottom:28px; }

/* ── ADMIN PANEL ──────────────────────────────────────────────────────────── */
.hh-admin-wrap { font-family:'Plus Jakarta Sans',sans-serif; }
.hh-admin-header { background:var(--white); border-bottom:1px solid var(--cream-border); padding:20px 28px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.hh-admin-title { font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:800; color:var(--text); letter-spacing:-0.02em; }
.hh-admin-title span { color:var(--pink); }
.hh-admin-nav { display:flex; gap:4px; flex-wrap:wrap; background:var(--cream); padding:4px; border-radius:var(--radius-pill); }
.hh-admin-nav-btn { font-family:'Plus Jakarta Sans',sans-serif; font-size:12px; font-weight:600; color:var(--muted); background:transparent; border:none; padding:8px 14px; border-radius:var(--radius-pill); cursor:pointer; transition:all 0.2s; white-space:nowrap; }
.hh-admin-nav-btn.active { background:var(--white); color:var(--pink); box-shadow:var(--shadow-xs); }
.hh-admin-nav-btn:hover:not(.active) { color:var(--text); }
.hh-admin-body { padding:28px; }
.hh-admin-kpi-row { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:28px; }
.hh-admin-kpi { background:var(--white); border:1px solid var(--cream-border); border-radius:16px; padding:18px 20px; position:relative; overflow:hidden; }
.hh-admin-kpi-bar { position:absolute; top:0; left:0; right:0; height:3px; }
.hh-admin-kpi-bar.pink   { background:linear-gradient(90deg,var(--pink),var(--pink-dark)); }
.hh-admin-kpi-bar.orange { background:linear-gradient(90deg,var(--orange),#d95a2b); }
.hh-admin-kpi-bar.green  { background:linear-gradient(90deg,#22c55e,#16a34a); }
.hh-admin-kpi-bar.blue   { background:linear-gradient(90deg,#3b82f6,#1d4ed8); }
.hh-admin-kpi-val { font-family:'Bricolage Grotesque',sans-serif; font-size:28px; font-weight:900; color:var(--text); margin-bottom:2px; }
.hh-admin-kpi-label { font-size:12px; color:var(--muted); font-weight:500; }
.hh-admin-kpi-delta { font-size:11px; font-weight:600; margin-top:4px; }
.hh-admin-kpi-delta.up   { color:#16a34a; }
.hh-admin-kpi-delta.down { color:#dc2626; }
/* Admin table */
.hh-admin-table-wrap { background:var(--white); border:1px solid var(--cream-border); border-radius:18px; overflow:hidden; }
.hh-admin-table-head { display:flex; align-items:center; justify-content:space-between; padding:16px 20px; background:var(--cream); border-bottom:1px solid var(--cream-border); gap:12px; flex-wrap:wrap; }
.hh-admin-table-head-title { font-family:'Bricolage Grotesque',sans-serif; font-size:15px; font-weight:700; color:var(--text); }
.hh-admin-filters { display:flex; gap:8px; flex-wrap:wrap; }
.hh-admin-filter-pill { font-family:'Plus Jakarta Sans',sans-serif; font-size:12px; font-weight:600; padding:6px 12px; border-radius:var(--radius-pill); border:1.5px solid var(--cream-border); background:var(--white); color:var(--muted); cursor:pointer; transition:all 0.15s; }
.hh-admin-filter-pill.active { border-color:var(--pink); color:var(--pink); background:var(--pink-soft); }
.hh-admin-search { border:1.5px solid var(--cream-border); border-radius:10px; padding:7px 12px; font-family:'Plus Jakarta Sans',sans-serif; font-size:13px; color:var(--text); background:var(--white); width:200px; transition:border-color 0.15s; }
.hh-admin-search:focus { outline:none; border-color:var(--pink); }
/* inline select in table */
.hh-status-select { border:1.5px solid var(--cream-border); border-radius:8px; padding:5px 8px; font-family:'Plus Jakarta Sans',sans-serif; font-size:12px; font-weight:600; color:var(--text); background:var(--cream); cursor:pointer; appearance:none; -webkit-appearance:none; }
.hh-status-select:focus { outline:none; border-color:var(--pink); }
/* Settings form */
.hh-settings-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.hh-settings-card { background:var(--white); border:1px solid var(--cream-border); border-radius:18px; padding:28px; }
.hh-settings-title { font-family:'Bricolage Grotesque',sans-serif; font-size:16px; font-weight:700; color:var(--text); margin-bottom:4px; }
.hh-settings-desc  { font-size:13px; color:var(--muted); margin-bottom:20px; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hh-helpers-grid   { grid-template-columns:repeat(2,1fr); }
  .hh-form-layout    { grid-template-columns:1fr; }
  .hh-form-sidebar   { position:static; }
  .hh-profile-grid   { grid-template-columns:1fr; }
  .hh-profile-photo-wrap { position:static; max-width:360px; }
  .hh-contact-grid   { grid-template-columns:1fr; }
  .hh-contact-info-card { position:static; }
  .hh-kpi-row        { grid-template-columns:repeat(2,1fr); }
  .hh-admin-kpi-row  { grid-template-columns:repeat(2,1fr); }
  .hh-settings-grid  { grid-template-columns:1fr; }
  .hh-profile-edit-grid { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  .hh-container { padding:0 20px; }
  .hh-section   { padding:48px 0; }
  .hh-helpers-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
  .hh-request-card { grid-template-columns:1fr; }
  .hh-req-action { align-items:flex-start; flex-direction:row; flex-wrap:wrap; }
  .hh-row, .hh-row-3 { grid-template-columns:1fr; }
  .hh-filters { flex-direction:column; }
  .hh-filter-input,.hh-filter-select { width:100%; }
  .hh-kpi-row { grid-template-columns:1fr 1fr; }
  .hh-admin-kpi-row { grid-template-columns:1fr 1fr; }
  .hh-login-card { padding:32px 24px; }
  .hh-contact-form-card { padding:28px 20px; }
  .hh-profile-meta { grid-template-columns:1fr 1fr; }
  .hh-dash-topbar { position:static; }
  .hh-applicant-row { grid-template-columns:1fr; }
  .hh-admin-body { padding:16px; }
  .hh-admin-nav { overflow-x:auto; }
}
@media (max-width: 480px) {
  .hh-helpers-grid { grid-template-columns:1fr; }
  .hh-kpi-row { grid-template-columns:1fr; }
  .hh-check-grid { grid-template-columns:1fr 1fr; }
  .hh-modal { padding:24px 18px; }
  .hh-auth-gate { padding:48px 24px; }
  .hh-admin-kpi-row { grid-template-columns:1fr 1fr; }
}/* End custom CSS */