/* ============================================================
   GroundHive – Laravel Custom CSS
   Bootstrap 5 override & extension layer
   Import after Bootstrap in app.css / resources/css/app.css
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --gh-black:       #0a0c0f;
  --gh-dark:        #111418;
  --gh-card:        #181c22;
  --gh-card-hover:  #1e232b;
  --gh-border:      #252b35;
  --gh-border-glow: #f5a800;
  --gh-amber:       #f5a800;
  --gh-amber-light: #ffc533;
  --gh-amber-dim:   rgba(245, 168, 0, 0.12);
  --gh-green:       #22c55e;
  --gh-green-dim:   rgba(34, 197, 94, 0.12);
  --gh-text:        #e8eaf0;
  --gh-muted:       #8b92a0;
  --gh-subtle:      #4a5263;
  --gh-radius:      12px;
  --gh-radius-lg:   18px;
  --gh-shadow:      0 4px 24px rgba(0,0,0,0.5);
  --gh-shadow-card: 0 2px 12px rgba(0,0,0,0.4);
  --gh-font-head:   'Space Grotesk', sans-serif;
  --gh-font-body:   'Manrope', sans-serif;
  --gh-header-h:    64px;
}

/* ── Base Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--gh-font-body);
  background-color: var(--gh-black);
  color: var(--gh-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.gh-heading {
  font-family: var(--gh-font-head);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.gh-display {
  font-family: var(--gh-font-head);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gh-dark); }
::-webkit-scrollbar-thumb { background: var(--gh-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gh-amber); }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.gh-navbar {
  background: rgba(17, 20, 24, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gh-border);
  height: var(--gh-header-h);
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 1px 0 rgba(245,168,0,0.08), 0 4px 24px rgba(0,0,0,0.4);
}

.gh-navbar .navbar-brand {
  font-family: var(--gh-font-head);
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gh-text) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gh-navbar .navbar-brand .brand-hive {
  color: var(--gh-amber);
}

.gh-navbar .brand-icon {
  width: 36px;
  height: 36px;
  color: var(--gh-amber);
  flex-shrink: 0;
}

/* Nav links */
.gh-navbar .nav-link {
  font-family: var(--gh-font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gh-muted) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.gh-navbar .nav-link:hover,
.gh-navbar .nav-link.active {
  color: var(--gh-text) !important;
  background: rgba(255,255,255,0.05);
}

/* Mobile toggler */
.gh-navbar .navbar-toggler {
  border: 1px solid var(--gh-border);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--gh-muted);
}

.gh-navbar .navbar-toggler:focus { box-shadow: none; }
.gh-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245%2C168%2C0%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Notification bell */
.gh-notif-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--gh-border);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--gh-muted);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  line-height: 1;
}

.gh-notif-btn:hover {
  border-color: var(--gh-amber);
  color: var(--gh-amber);
}

.gh-notif-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--gh-dark);
}

/* Mobile nav collapse */
@media (max-width: 991.98px) {
  .gh-navbar .navbar-collapse {
    background: var(--gh-dark);
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    padding: 1rem;
    margin-top: 0.5rem;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.gh-hero {
  background: var(--gh-dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--gh-border);
}

/* Diagonal amber stripe */
.gh-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(245,168,0,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.gh-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gh-amber), transparent);
}

.gh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gh-amber-dim);
  border: 1px solid rgba(245,168,0,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gh-amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.gh-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gh-amber);
  animation: gh-pulse 2s infinite;
}

@keyframes gh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.gh-hero-title {
  font-family: var(--gh-font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  color: var(--gh-text);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gh-hero-title .accent { color: var(--gh-amber); }

.gh-hero-sub {
  font-size: 1.05rem;
  color: var(--gh-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Hero stats bar */
.gh-stat-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gh-border);
}

.gh-stat {
  display: flex;
  flex-direction: column;
}

.gh-stat-num {
  font-family: var(--gh-font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gh-amber);
  line-height: 1;
}

.gh-stat-label {
  font-size: 0.75rem;
  color: var(--gh-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gh-primary {
  background: var(--gh-amber);
  color: #0a0c0f;
  font-family: var(--gh-font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--gh-radius);
  border: 2px solid var(--gh-amber);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gh-primary:hover {
  background: var(--gh-amber-light);
  border-color: var(--gh-amber-light);
  color: #0a0c0f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,168,0,0.35);
}

.btn-gh-primary:active { transform: translateY(0); }

.btn-gh {
  background: var(--gh-amber);
  color: #0a0c0f;
  border: 2px solid var(--gh-amber);
  border-radius: var(--gh-radius);
  padding: 0.55rem 1.1rem;
  font-family: var(--gh-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-gh:hover {
  background: var(--gh-amber-light);
  border-color: var(--gh-amber-light);
  color: #0a0c0f;
}

.btn-gh-outline {
  background: transparent;
  color: var(--gh-text);
  font-family: var(--gh-font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--gh-radius);
  border: 2px solid var(--gh-border);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gh-outline:hover {
  border-color: var(--gh-amber);
  color: var(--gh-amber);
  background: var(--gh-amber-dim);
}

.gh-card {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
}

.gh-link {
  color: var(--gh-amber);
  text-decoration: none;
}

.gh-link:hover {
  color: var(--gh-amber-light);
}

.gh-text-muted {
  color: var(--gh-muted) !important;
}

.btn-gh-apply {
  background: var(--gh-amber);
  color: #0a0c0f;
  font-family: var(--gh-font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gh-apply:hover {
  background: var(--gh-amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,168,0,0.3);
}

/* ============================================================
   FILTER SIDEBAR
   ============================================================ */
.gh-sidebar {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--gh-header-h) + 16px);
}

.gh-sidebar-title {
  font-family: var(--gh-font-head);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gh-text);
  margin: 0;
}

.gh-filter-group {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gh-border);
}

.gh-filter-group:last-child { border-bottom: none; padding-bottom: 0; }
.gh-filter-group:first-child { padding-top: 0; }

.gh-filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gh-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

/* Custom radio & checkbox */
.gh-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
  color: var(--gh-muted);
  font-size: 0.875rem;
  transition: color 0.15s;
  user-select: none;
}

.gh-check:hover { color: var(--gh-text); }

.gh-check input[type="radio"],
.gh-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gh-subtle);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
  position: relative;
}

.gh-check input[type="checkbox"] { border-radius: 4px; }

.gh-check input[type="radio"]:checked,
.gh-check input[type="checkbox"]:checked {
  background: var(--gh-amber);
  border-color: var(--gh-amber);
}

.gh-check input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0a0c0f;
}

.gh-check input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #0a0c0f;
  font-weight: 900;
  line-height: 1;
}

.gh-check input:checked ~ span { color: var(--gh-text); }

/* Location input */
.gh-input {
  background: var(--gh-black);
  border: 1px solid var(--gh-border);
  border-radius: 8px;
  color: var(--gh-text);
  font-family: var(--gh-font-body);
  font-size: 0.875rem;
  padding: 0.6rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.gh-input::placeholder { color: var(--gh-subtle); }

.gh-input:focus {
  border-color: var(--gh-amber);
  box-shadow: 0 0 0 3px rgba(245,168,0,0.12);
}

select.gh-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b92a0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
  cursor: pointer;
}

/* Distance pills (grid) */
.gh-distance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.gh-dist-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gh-black);
  border: 1px solid var(--gh-border);
  border-radius: 6px;
  padding: 5px 4px;
  font-size: 0.75rem;
  color: var(--gh-muted);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.gh-dist-pill:has(input:checked),
.gh-dist-pill.active {
  background: var(--gh-amber-dim);
  border-color: var(--gh-amber);
  color: var(--gh-amber);
}

.gh-dist-pill input[type="radio"] {
  display: none;
}

/* Mobile filter toggle */
.gh-filter-toggle {
  background: transparent;
  border: none;
  color: var(--gh-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.gh-filter-toggle:hover { color: var(--gh-amber); }

/* ============================================================
   JOB COUNT BAR
   ============================================================ */
.gh-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.gh-results-count {
  font-family: var(--gh-font-head);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gh-results-count span {
  color: var(--gh-amber);
  font-size: 1.4rem;
}

.gh-sort-select {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: 8px;
  color: var(--gh-muted);
  font-family: var(--gh-font-body);
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238b92a0' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.gh-sort-select:focus { border-color: var(--gh-amber); }

/* ============================================================
   JOB CARD
   ============================================================ */
.gh-job-card {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-lg);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gh-job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: transparent;
  transition: background 0.25s;
  border-radius: 12px 0 0 12px;
}

.gh-job-card:hover {
  border-color: rgba(245,168,0,0.45);
  box-shadow: 0 4px 28px rgba(0,0,0,0.45), 0 0 0 1px rgba(245,168,0,0.08);
  transform: translateY(-2px);
  background: var(--gh-card-hover);
}

.gh-job-card:hover::before {
  background: var(--gh-amber);
}

/* Featured/hot badge */
.gh-job-card.gh-featured {
  border-color: rgba(245,168,0,0.3);
}

.gh-job-card.gh-featured::before { background: var(--gh-amber); }

.gh-badge-hot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 100px;
}

.gh-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gh-green-dim);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 100px;
}

/* Job card header */
.gh-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.gh-card-title {
  font-family: var(--gh-font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gh-amber);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}

a.gh-card-title,
a.gh-card-title:visited,
a.gh-card-title:hover,
a.gh-card-title:focus {
  color: var(--gh-amber) !important;
  text-decoration: none !important;
}

.gh-card-company {
  font-size: 0.875rem;
  color: #b7c0cf;
  margin: 0;
}

.gh-card-pay {
  text-align: right;
  flex-shrink: 0;
}

.gh-pay-amount {
  font-family: var(--gh-font-head);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--gh-green);
  line-height: 1;
  display: block;
}

.gh-pay-type {
  font-size: 0.7rem;
  color: var(--gh-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Job meta chips */
.gh-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.gh-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gh-border);
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 0.78rem;
  color: #c1c9d6;
  white-space: nowrap;
}

.gh-chip-icon {
  color: var(--gh-amber);
  font-size: 0.85rem;
  line-height: 1;
}

/* Benefits */
.gh-benefits {
  margin-top: 1.1rem;
}

.gh-benefits-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gh-subtle);
  margin-bottom: 6px;
}

.gh-benefit-pill {
  display: inline-flex;
  align-items: center;
  background: var(--gh-green-dim);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Card footer */
.gh-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gh-border);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gh-posted-time {
  font-size: 0.75rem;
  color: var(--gh-subtle);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   REGISTRATION VIEW
   ============================================================ */
.gh-register-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.gh-register-title {
  font-family: var(--gh-font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  text-align: center;
  color: var(--gh-text);
  margin-bottom: 0.5rem;
}

.gh-register-sub {
  text-align: center;
  color: var(--gh-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Role selector tabs */
.gh-role-tabs {
  display: flex;
  border-radius: var(--gh-radius);
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  padding: 4px;
  gap: 4px;
  margin-bottom: 2rem;
}

.gh-role-tab {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 9px;
  background: transparent;
  border: none;
  color: var(--gh-muted);
  font-family: var(--gh-font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.gh-role-tab.active {
  background: var(--gh-amber);
  color: #0a0c0f;
  box-shadow: 0 2px 8px rgba(245,168,0,0.25);
}

.gh-role-tab:not(.active):hover {
  color: var(--gh-text);
  background: rgba(255,255,255,0.04);
}

/* Form card */
.gh-form-card {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-lg);
  padding: 2rem;
}

@media (min-width: 576px) {
  .gh-form-card { padding: 2.5rem; }
}

.gh-form-section-title {
  font-family: var(--gh-font-head);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gh-text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gh-form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gh-border);
}

/* Form labels & inputs */
.gh-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gh-muted);
  margin-bottom: 6px;
}

.gh-form-group { margin-bottom: 1.25rem; }

/* Submit button */
.btn-gh-submit {
  background: var(--gh-amber);
  color: #0a0c0f;
  font-family: var(--gh-font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--gh-radius);
  border: none;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-top: 0.5rem;
}

.btn-gh-submit:hover {
  background: var(--gh-amber-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,168,0,0.35);
}

/* ============================================================
   TOAST / NOTIFICATION
   ============================================================ */
.gh-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-left: 4px solid var(--gh-green);
  border-radius: var(--gh-radius);
  padding: 1rem 1.25rem;
  min-width: 280px;
  max-width: 380px;
  box-shadow: var(--gh-shadow);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gh-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.gh-toast.gh-toast-error { border-left-color: #ef4444; }
.gh-toast.gh-toast-warning { border-left-color: var(--gh-amber); }

.gh-toast-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gh-text);
  margin-bottom: 2px;
}

.gh-toast-body {
  font-size: 0.8rem;
  color: var(--gh-muted);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.gh-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gh-subtle);
}

.gh-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.gh-empty-title {
  font-family: var(--gh-font-head);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--gh-muted);
  margin-bottom: 0.5rem;
}

/* ============================================================
   MOBILE FILTER OFFCANVAS (Bootstrap offcanvas override)
   ============================================================ */
.gh-offcanvas.offcanvas {
  background: var(--gh-dark);
  border-right: 1px solid var(--gh-border);
  width: 300px;
}

.gh-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--gh-border);
  padding: 1.25rem 1.5rem;
}

.gh-offcanvas .offcanvas-title {
  font-family: var(--gh-font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.gh-offcanvas .btn-close {
  filter: invert(1);
  opacity: 0.5;
}

.gh-offcanvas .offcanvas-body { padding: 1.25rem 1.5rem; }

/* ============================================================
   TRUST BAR (social proof)
   ============================================================ */
.gh-trust-bar {
  background: var(--gh-dark);
  border-top: 1px solid var(--gh-border);
  border-bottom: 1px solid var(--gh-border);
  padding: 1rem 0;
  overflow: hidden;
}

.gh-trust-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gh-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gh-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gh-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gh-amber);
  flex-shrink: 0;
}

/* ============================================================
   UTILITY HELPERS
   ============================================================ */
.gh-divider {
  height: 1px;
  background: var(--gh-border);
  margin: 1.25rem 0;
}

.gh-section-pad { padding-top: 2.5rem; }

.text-gh-amber    { color: var(--gh-amber) !important; }

/* ============================================================
   MOBILE TABLE STACK
   ============================================================ */
.gh-mobile-table td::before {
  content: attr(data-label);
  display: none;
}

@media (max-width: 767.98px) {
  .gh-navbar .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .gh-navbar .navbar-brand {
    font-size: 1.4rem;
  }

  .gh-navbar .brand-icon {
    width: 30px;
    height: 30px;
  }

  .gh-navbar .navbar-collapse .d-flex {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.5rem !important;
    margin-top: 0.75rem;
  }

  .gh-navbar .btn-gh-primary,
  .gh-navbar .btn-gh-outline {
    justify-content: center;
    width: 100%;
  }

  .gh-results-bar {
    align-items: stretch;
  }

  .gh-sort-select {
    width: 100%;
  }

  .gh-sidebar {
    padding: 1rem;
  }

  .gh-distance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gh-job-card {
    padding: 1rem;
  }

  .gh-card-title {
    font-size: 1.28rem;
    line-height: 1.2;
  }

  .gh-card-company {
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .gh-chip {
    font-size: 1rem;
    padding: 7px 11px;
  }

  .gh-pay-amount {
    font-size: 1.45rem;
  }

  .gh-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .gh-card-footer {
    align-items: stretch;
  }

  .gh-card-footer .btn-gh-apply,
  .gh-card-footer .btn-gh-outline {
    width: 100%;
    justify-content: center;
  }

  .gh-mobile-table thead {
    display: none;
  }

  .gh-mobile-table tbody,
  .gh-mobile-table tr,
  .gh-mobile-table td {
    display: block;
    width: 100%;
  }

  .gh-mobile-table tr {
    border: 1px solid var(--gh-border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: var(--gh-dark);
  }

  .gh-mobile-table td {
    border: 0 !important;
    padding: 0.35rem 0;
    text-align: left !important;
  }

  .gh-mobile-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gh-subtle);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
  }
}

/* ============================================================
   DRIVER QUESTIONNAIRE BUTTON STATE
   ============================================================ */
.gh-card .btn-check:checked + .btn-outline-light,
.gh-card .btn-check:active + .btn-outline-light {
  background: var(--gh-amber);
  border-color: var(--gh-amber);
  color: #0a0c0f;
}

.gh-card .btn-check:focus + .btn-outline-light {
  box-shadow: 0 0 0 0.2rem rgba(245, 168, 0, 0.25);
}
.text-gh-green    { color: var(--gh-green) !important; }
.text-gh-muted    { color: var(--gh-muted) !important; }
.bg-gh-dark       { background: var(--gh-dark) !important; }
.bg-gh-card       { background: var(--gh-card) !important; }
.border-gh        { border-color: var(--gh-border) !important; }

/* Skeleton loader */
@keyframes gh-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.gh-skeleton {
  background: linear-gradient(90deg,
    var(--gh-card) 25%,
    var(--gh-card-hover) 50%,
    var(--gh-card) 75%
  );
  background-size: 1200px 100%;
  animation: gh-shimmer 1.6s infinite;
  border-radius: 6px;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 767.98px) {
  .gh-hero { padding: 3rem 0 2.5rem; }
  .gh-hero-title { font-size: 2.5rem; }
  .gh-stat-bar { gap: 1.25rem; }
  .gh-stat-num { font-size: 1.5rem; }
  .gh-job-card { padding: 1.2rem; }
  .gh-card-title { font-size: 1.1rem; }
  .gh-pay-amount { font-size: 1.5rem; }
  .gh-sidebar { position: static; }
  .gh-form-card { padding: 1.5rem; }
  .gh-register-wrap { padding: 2rem 0 3rem; }
  .gh-toast {
    left: 1rem;
    right: 1rem;
    min-width: unset;
    max-width: unset;
    bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .gh-card-title { font-size: 1.34rem; line-height: 1.2; }
  .gh-card-company { font-size: 1.12rem; }
  .gh-chip { font-size: 1.02rem; padding: 7px 11px; }
  .gh-card-top { flex-direction: column; gap: 0.5rem; }
  .gh-card-pay { text-align: left; }
}
