/* Hekima Debt Collection and Auctioneers TZ Limited — company-profile
   homepage. Scoped with its own --hekima- prefixed variables rather than
   reusing --brand-primary from app.css: this page represents Hekima's own
   external brand (orange/charcoal sampled directly from their Company
   Profile PDF), which is deliberately kept independent from the auction
   platform's internal admin/customer theme used under /admin and
   /customer, even though the two shades of orange happen to be close. */

:root {
  --hekima-orange: #f78b1f;
  --hekima-orange-dark: #d9740f;
  --hekima-orange-light: #fdeee0;
  --hekima-charcoal: #3f3f3f;
  --hekima-charcoal-dark: #262626;
  --hekima-cream: #fbf1e7;
  --hekima-text: #2b2b2b;
  --hekima-text-muted: #6b6b6b;
  --hekima-border: #ece3d9;
  --hekima-radius: 10px;
  --hekima-shadow: 0 4px 18px rgba(43, 43, 43, 0.08);
  --hekima-transition: 180ms ease;
}

.hekima-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--hekima-text);
  background: #fff;
  scroll-behavior: smooth;
}

.hekima-page section { scroll-margin-top: 76px; }

/* --- Top navigation --- */
.hekima-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--hekima-border);
  transition: box-shadow var(--hekima-transition);
}
.hekima-nav.is-scrolled { box-shadow: var(--hekima-shadow); }
.hekima-nav .navbar-brand-text { font-weight: 700; color: var(--hekima-charcoal); letter-spacing: .2px; line-height: 1.1; }
.hekima-nav .navbar-brand-text small { display: block; font-weight: 500; font-size: .68rem; color: var(--hekima-text-muted); letter-spacing: .3px; }
.hekima-nav .nav-link {
  color: var(--hekima-text);
  font-weight: 500;
  font-size: .93rem;
  padding: .5rem .9rem !important;
}
.hekima-nav .nav-link:hover { color: var(--hekima-orange); }
.hekima-nav-logo { height: 38px; width: auto; }

.btn-hekima-primary {
  background: var(--hekima-charcoal);
  border-color: var(--hekima-charcoal);
  color: #fff;
  font-weight: 600;
  border-radius: var(--hekima-radius);
  transition: background var(--hekima-transition), transform var(--hekima-transition);
}
.btn-hekima-primary:hover { background: var(--hekima-charcoal-dark); color: #fff; transform: translateY(-1px); }

.btn-hekima-cta {
  background: var(--hekima-orange);
  border-color: var(--hekima-orange);
  color: #fff;
  font-weight: 700;
  border-radius: var(--hekima-radius);
  transition: filter var(--hekima-transition), transform var(--hekima-transition);
}
.btn-hekima-cta:hover { filter: brightness(0.94); color: #fff; transform: translateY(-1px); }

.btn-hekima-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  font-weight: 600;
  border-radius: var(--hekima-radius);
  transition: background var(--hekima-transition);
}
.btn-hekima-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* --- Hero --- */
.hekima-hero {
  background: linear-gradient(135deg, var(--hekima-charcoal) 0%, var(--hekima-charcoal-dark) 100%);
  color: #fff;
  padding: 5.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hekima-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.08);
}
.hekima-hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,139,31,.15) 0%, rgba(247,139,31,0) 70%);
}
.hekima-hero-eyebrow {
  color: var(--hekima-orange);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hekima-hero h1 { font-weight: 800; line-height: 1.15; }
.hekima-hero p.lead { color: rgba(255,255,255,.78); }
.hekima-hero-logo-badge {
  background: #fff;
  border-radius: var(--hekima-radius);
  padding: 2rem 1.5rem 1.25rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.hekima-hero-logo-badge img { max-width: 190px; width: 100%; }
.hekima-hero-logo-badge .tagline {
  margin-top: 1rem;
  font-weight: 800;
  font-style: italic;
  color: var(--hekima-charcoal);
  font-size: .95rem;
  text-align: center;
}

/* --- Section headings --- */
.hekima-eyebrow {
  color: var(--hekima-orange-dark);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hekima-section-title { font-weight: 800; color: var(--hekima-charcoal); }
.hekima-section-lead { color: var(--hekima-text-muted); max-width: 640px; }
.hekima-section-alt { background: var(--hekima-cream); }

/* --- Cards --- */
.hekima-card {
  background: #fff;
  border: 1px solid var(--hekima-border);
  border-radius: var(--hekima-radius);
  transition: box-shadow var(--hekima-transition), transform var(--hekima-transition);
}
.hekima-card:hover { box-shadow: var(--hekima-shadow); transform: translateY(-2px); }

.hekima-icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--hekima-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* --- Core values (2x2 cards) --- */
.hekima-value-card { padding: 1.75rem; height: 100%; }
.hekima-value-card h5 { font-weight: 700; color: var(--hekima-charcoal); }

/* --- Services (pillar cards + chips) --- */
.hekima-service-pillar { padding: 2rem; height: 100%; }
.hekima-service-pillar h4 { font-weight: 800; color: var(--hekima-charcoal); }
.hekima-chip-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.hekima-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--hekima-orange-light);
  color: var(--hekima-orange-dark);
  font-weight: 600;
  font-size: .82rem;
  border-radius: 999px;
  padding: .4rem .85rem;
}
.hekima-chip i { font-size: .7rem; }

/* --- Why choose us (icon list grid) --- */
.hekima-why-item { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; }
.hekima-why-item .hekima-why-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--hekima-orange-light);
  color: var(--hekima-orange-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.hekima-why-item h6 { font-weight: 700; margin-bottom: .2rem; color: var(--hekima-charcoal); }
.hekima-why-item p { font-size: .88rem; color: var(--hekima-text-muted); margin: 0; }

/* --- Process timeline --- */
.hekima-process-step { position: relative; padding: 1.75rem; height: 100%; }
.hekima-process-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--hekima-charcoal);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hekima-process-step h5 { font-weight: 700; color: var(--hekima-charcoal); }
.hekima-process-step ul { padding-left: 1.1rem; margin: .75rem 0 0; }
.hekima-process-step li { font-size: .86rem; color: var(--hekima-text-muted); margin-bottom: .35rem; }

/* --- Terms cards --- */
.hekima-terms-card { padding: 2rem; height: 100%; }
.hekima-terms-rate {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--hekima-orange);
  line-height: 1;
}
.hekima-terms-card ul { padding-left: 1.1rem; margin: 1rem 0 0; }
.hekima-terms-card li { font-size: .9rem; color: var(--hekima-text-muted); margin-bottom: .5rem; }

/* --- Team (initials avatar cards) --- */
.hekima-team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--hekima-charcoal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 1.5rem auto 0;
  border: 3px solid var(--hekima-orange-light);
}
.hekima-team-card.lead-role .hekima-team-avatar { background: var(--hekima-orange); }
.hekima-team-caption { text-align: center; padding: .85rem 1rem 1.25rem; }
.hekima-team-caption .fw-bold { color: var(--hekima-charcoal); }
.hekima-team-caption .role { color: var(--hekima-orange-dark); font-size: .82rem; font-weight: 600; }

/* --- Tables --- */
.hekima-table-wrap { border: 1px solid var(--hekima-border); border-radius: var(--hekima-radius); overflow: hidden; }
.hekima-table { margin-bottom: 0; }
.hekima-table thead th {
  background: var(--hekima-charcoal);
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  border: none;
  padding: .85rem 1rem;
}
.hekima-table td { padding: .8rem 1rem; vertical-align: middle; font-size: .9rem; }
.hekima-badge-soft {
  display: inline-block;
  background: var(--hekima-orange-light);
  color: var(--hekima-orange-dark);
  font-weight: 700;
  border-radius: 6px;
  padding: .3rem .7rem;
  font-size: .85rem;
}

/* --- Trust / credential badges --- */
.hekima-trust-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .9rem;
  color: #fff; /* always used on the dark hero — hardcoded rather than
                  relying on a .text-white utility class order, which
                  a stylesheet-order change could silently break again */
}
.hekima-trust-badge i { color: var(--hekima-orange); font-size: 1.3rem; }

.hekima-cred-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border: 1px solid var(--hekima-border);
  border-radius: var(--hekima-radius);
  padding: .9rem 1.1rem;
  font-weight: 600;
  font-size: .87rem;
  color: var(--hekima-charcoal);
  height: 100%;
}
.hekima-cred-chip i { color: var(--hekima-orange); font-size: 1.15rem; flex-shrink: 0; }

/* --- Final CTA banner --- */
.hekima-cta-banner {
  background: linear-gradient(135deg, var(--hekima-charcoal) 0%, var(--hekima-orange-dark) 160%);
  color: #fff;
  border-radius: var(--hekima-radius);
  padding: 3rem;
}

/* --- Footer --- */
.hekima-footer { background: var(--hekima-charcoal); color: rgba(255,255,255,.75); }
.hekima-footer a { color: rgba(255,255,255,.75); text-decoration: none; }
.hekima-footer a:hover { color: #fff; }
.hekima-footer h6 { color: #fff; font-weight: 700; }

/* --- Mobile --- */
@media (max-width: 991.98px) {
  .hekima-hero { padding: 3.5rem 0 4rem; text-align: center; }
  .hekima-hero-logo-badge { margin-bottom: 1.5rem; }
}
