:root{
  /* UPS-inspired palette */
  --fh-brown: #2b1a12;      /* deep brown */
  --fh-brown-2: #3a2318;    /* mid brown */
  --fh-yellow: #ffb500;     /* UPS-ish yellow */
  --fh-ink: #111214;
  --fh-text: #1b1c1f;
  --fh-muted: #6b7280;
  --fh-bg: #ffffff;
  --fh-soft: #f6f4f1;       /* warm light */
  --fh-card: #ffffff;

  --fh-radius: 18px;
  --fh-radius-lg: 22px;

  /* FIX: rgba alpha must be decimals */
  --fh-shadow: 0 12px 30px rgba(17,18,20,0.08);
  --fh-shadow-2: 0 18px 40px rgba(17,18,20,0.12);

  --fh-border: rgba(17,18,20,0.10);

  /* Themeable pill defaults (light surfaces) */
  --fh-pill-bg: rgba(255,181,0,0.14);
  --fh-pill-br: rgba(255,181,0,0.24);
  --fh-pill-fg: var(--fh-brown);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fh-text);
  background: var(--fh-bg);
}

/* ---------- Utilities ---------- */
.fh-body{ overflow-x:hidden; }
.text-muted{ color: var(--fh-muted)!important; }
.fh-divider{ height:1px; background: var(--fh-border); }

/* ---------- Topbar ---------- */
.fh-topbar{
  background: #fff;
  border-bottom: 1px solid var(--fh-border);
  font-size: 13px;
}
.fh-topbar .container{ padding: 10px 12px; }
.fh-topbar-left{ color: #3b3f46; }
.fh-topbar-right{ display:flex; gap:16px; }
.fh-topbar-link{
  color: #2b2f36;
  text-decoration:none;
  font-weight:600;
}
.fh-topbar-link:hover{ color: var(--fh-brown); text-decoration:underline; }
.fh-dot{
  display:inline-block;
  width:4px; height:4px;
  border-radius:999px;
  background: rgba(17,18,20,0.35);
}

/* ---------- Navbar ---------- */
.fh-header{ position: sticky; top:0; z-index: 50; }
.fh-navbar{
  background: var(--fh-brown);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fh-navbar .nav-link{
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}
.fh-navbar .nav-link:hover{ color: #fff; }
.fh-navbar .nav-link.active{ color: var(--fh-yellow); }

.fh-logo-badge{
  width: 34px; height: 34px;
  display:inline-flex;
  align-items:center; justify-content:center;
  border-radius: 10px;
  background: var(--fh-yellow);
  color: #1c130a;
  font-weight: 800;
  letter-spacing: .5px;
}
.fh-brand-sub{
  opacity: .85;
  font-weight: 600;
  margin-left: 4px;
  font-size: 14px;
}

/* ---------- Buttons ---------- */
/* Primary (reduce "shiny" glow, keep premium) */
.btn-fh-primary{
  --bs-btn-bg: var(--fh-yellow);
  --bs-btn-border-color: var(--fh-yellow);
  --bs-btn-hover-bg: #ffc533;
  --bs-btn-hover-border-color: #ffc533;
  --bs-btn-color: #1c130a;
  --bs-btn-hover-color: #1c130a;
  font-weight: 800;
  border-radius: 999px;
  padding-inline: 18px;

  /* FIX: alpha decimals + tone down glow */
  box-shadow:
    0 10px 22px rgba(255,181,0,0.16),
    0 8px 18px rgba(17,18,20,0.10);
}

/*
  Outline button: make it safe on LIGHT backgrounds by default.
  (white-outline on white sections = invisible)
*/
.btn-fh-outline{
  --bs-btn-color: var(--fh-brown);
  --bs-btn-border-color: rgba(43,26,18,0.28);
  --bs-btn-hover-bg: rgba(255,181,0,0.10);
  --bs-btn-hover-border-color: rgba(255,181,0,0.45);
  --bs-btn-hover-color: var(--fh-brown);
  border-radius: 999px;
  font-weight: 700;
  padding-inline: 16px;
}

/* On DARK surfaces (hero/navbar), force white outline + text */
.fh-navbar .btn-fh-outline,
.fh-hero .btn-fh-outline,
.fh-promo .btn-fh-outline{
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255,255,255,0.35);
  --bs-btn-hover-bg: rgba(255,255,255,0.10);
  --bs-btn-hover-border-color: rgba(255,255,255,0.45);
  --bs-btn-hover-color: #fff;
}

/* Ghost: same idea (default safe on light, override on dark) */
.btn-fh-ghost{
  background: rgba(43,26,18,0.06);
  color: var(--fh-brown);
  border: 1px solid rgba(43,26,18,0.14);
  border-radius: 999px;
  font-weight: 800;
  padding-inline: 18px;
}
.btn-fh-ghost:hover{
  background: rgba(255,181,0,0.10);
  color: var(--fh-brown);
}

.fh-navbar .btn-fh-ghost,
.fh-hero .btn-fh-ghost,
.fh-promo .btn-fh-ghost{
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.fh-navbar .btn-fh-ghost:hover,
.fh-hero .btn-fh-ghost:hover,
.fh-promo .btn-fh-ghost:hover{
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ---------- Hero ---------- */
.fh-hero{
  position: relative;
  min-height: 56vh;
  display:flex;
  align-items: stretch;
  color: #fff;
  background: var(--fh-brown);

  /* Dark-surface pill defaults */
  --fh-pill-bg: rgba(255,181,0,0.18);
  --fh-pill-br: rgba(255,181,0,0.32);
  --fh-pill-fg: #fff;
}
.fh-hero-bg{
  position:absolute; inset:0;
  background-image: url("https://fleethaste.com/newsite/assets/images/Slider/slider4.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.fh-hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(43,26,18,0.92) 0%, rgba(43,26,18,0.72) 45%, rgba(43,26,18,0.55) 100%),
    radial-gradient(60% 60% at 20% 30%, rgba(255,181,0,0.18) 0%, rgba(255,181,0,0) 60%);
}
.fh-hero-content{
  position:relative;
  padding: 70px 12px 84px;
}
.fh-hero-kicker{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 14px;
}

/* FIX: Single pill definition, themeable via vars */
.fh-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  background: var(--fh-pill-bg);
  border: 1px solid var(--fh-pill-br);
  color: var(--fh-pill-fg);
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.fh-kicker-text{
  opacity: .9;
  font-weight: 650;
  font-size: 14px;
}

.fh-hero-title{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.fh-hero-subtitle{
  max-width: 58ch;
  font-size: 16px;
  opacity: .92;
  line-height: 1.6;
}

.fh-hero-metrics{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}
.fh-metric{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}
.fh-metric-num{
  font-weight: 900;
  font-size: 18px;
}
.fh-metric-label{
  font-size: 12px;
  opacity: .85;
}

/* wave bottom */
.fh-hero-bottom-wave{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 60px;
  background: var(--fh-bg);
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}

/* ---------- Cards ---------- */
.fh-card{
  background: var(--fh-card);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  box-shadow: var(--fh-shadow);
}
.fh-hero-card{
  padding: 18px;
  border-radius: var(--fh-radius-lg);
}
.fh-card-head .text-muted{ color: #6b7280!important; }
.fh-form .form-control{
  border-radius: 14px;
  border: 1px solid rgba(17,18,20,0.14);
  padding: 12px 14px;
}
.fh-form .input-group .form-control{
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.fh-form .input-group .btn{
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  font-weight: 900;
}

.fh-link{
  color: var(--fh-brown-2);
  text-decoration: none;
  font-weight: 800;
}
.fh-link:hover{ text-decoration: underline; color: var(--fh-brown); }

.fh-mini-action{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--fh-ink);
  background: #fafafa;
  border: 1px solid rgba(17,18,20,0.10);
  border-radius: 14px;
  padding: 12px;
  font-weight: 800;
}
.fh-mini-action:hover{
  background:#fff;
  box-shadow: 0 12px 26px rgba(17,18,20,0.10);
}
.fh-mini-ic{
  width: 30px; height: 30px;
  border-radius: 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,181,0,0.22);
  border: 1px solid rgba(255,181,0,0.32);
}

.fh-trust{
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.fh-trust-badge{
  display:inline-flex;
  align-self:flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
  font-size: 12px;
}
.fh-trust-logos{
  display:flex; gap: 10px; flex-wrap: wrap;
  opacity: .9;
  font-weight: 700;
  font-size: 13px;
}
.fh-trust-logos span{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ---------- Sections ---------- */
.fh-section{
  padding: 70px 0;
}
.fh-section-soft{
  background: var(--fh-soft);
}
.fh-section-head{
  text-align:center;
  margin-bottom: 26px;
}
.fh-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.fh-subtitle{
  color: var(--fh-muted);
  max-width: 70ch;
  margin: 0 auto;
}

/* ---------- Features / Services ---------- */
.fh-feature{
  padding: 18px;
  border-radius: var(--fh-radius);
}
.fh-feature-ic{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,181,0,0.18);
  border: 1px solid rgba(255,181,0,0.26);
  color: #1c130a;
  font-weight: 900;
  margin-bottom: 10px;
}

.fh-service{
  padding: 18px;
  border-radius: var(--fh-radius);
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}
.fh-service-top{ margin-bottom: 16px; }
.fh-service-ic{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(43,26,18,0.06);
  border: 1px solid rgba(43,26,18,0.10);
  margin-bottom: 12px;
}
.fh-link-arrow{
  margin-top: 10px;
  color: var(--fh-brown);
  text-decoration:none;
  font-weight: 900;
}
.fh-link-arrow:hover{ text-decoration: underline; }

.fh-cta-strip{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: var(--fh-radius);
  background: #fff;
  border: 1px solid rgba(17,18,20,0.10);
  box-shadow: var(--fh-shadow);
}
.fh-cta-title{ font-weight: 900; }
.fh-cta-sub{ color: var(--fh-muted); }

/* ---------- Split card ---------- */
.fh-split{
  overflow:hidden;
  border-radius: var(--fh-radius-lg);
}
.fh-split-img{
  height: 220px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px){
  .fh-split{ display:grid; grid-template-columns: 1fr 1.1fr; }
  .fh-split-img{ height: 100%; min-height: 320px; }
}
.fh-split-body{ padding: 22px; }

/* ---------- List card ---------- */
.fh-listcard{ padding: 18px; }
.fh-listitem{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 10px 6px;
}
.fh-list-ic{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,181,0,0.16);
  border: 1px solid rgba(255,181,0,0.24);
  font-weight: 900;
}

/* ---------- Promo band ---------- */
.fh-promo{
  background: var(--fh-brown);
  color:#fff;
  border-radius: var(--fh-radius-lg);
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--fh-shadow-2);
}
.fh-promo-title{ font-weight: 900; font-size: 18px; }
.fh-promo-sub{ opacity: .9; }

/* ---------- Industry cards ---------- */
.fh-industry{ padding: 18px; height: 100%; }
.fh-ind-ic{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(43,26,18,0.06);
  border: 1px solid rgba(43,26,18,0.10);
  margin-bottom: 12px;
  font-weight: 900;
}

/* ---------- About image ---------- */
.fh-imgbox{
  border-radius: var(--fh-radius-lg);
  min-height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--fh-shadow-2);
  border: 1px solid rgba(17,18,20,0.10);
}

/* ---------- Stat ---------- */
.fh-stat{
  background: #fff;
  border: 1px solid rgba(17,18,20,0.10);
  border-radius: var(--fh-radius);
  padding: 14px;
  box-shadow: var(--fh-shadow);
}
.fh-stat-num{ font-weight: 900; font-size: 22px; color: var(--fh-brown); }
.fh-stat-label{ color: var(--fh-muted); font-weight: 650; }

/* ---------- Contact card ---------- */
.fh-contact-card{ padding: 18px; }
.fh-contact-line{
  display:flex; align-items:center; gap: 10px;
  padding: 10px 0;
  font-weight: 800;
}
.fh-ic{
  width: 32px; height: 32px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,181,0,0.18);
  border: 1px solid rgba(255,181,0,0.26);
}

/* ---------- Footer ---------- */
.fh-footer{
  background: #1a120d;
  color: rgba(255,255,255,0.92);
  padding: 56px 0 28px;
}
.fh-footer .text-muted{ color: rgba(255,255,255,0.70)!important; }
.fh-footer-title{
  font-weight: 900;
  margin-bottom: 10px;
}
.fh-footer-link{
  display:block;
  color: rgba(255,255,255,0.82);
  text-decoration:none;
  padding: 6px 0;
  font-weight: 650;
}
.fh-footer-link:hover{ color: #fff; text-decoration: underline; }
.fh-footer-bottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.fh-footer-mini{ color: rgba(255,255,255,0.72); }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991px){
  .fh-hero-content{ padding-top: 46px; padding-bottom: 76px; }
  .fh-hero-bottom-wave{ border-top-left-radius: 34px; border-top-right-radius: 34px; }
}

/* Make Bootstrap Icons sit nicely in your icon boxes */
.fh-feature-ic i,
.fh-service-ic i,
.fh-list-ic i,
.fh-statbox-ic i,
.fh-ic i {
  font-size: 18px;
  line-height: 1;
}

/* Stats section boxes */
.fh-statbox{
  padding: 18px;
  border-radius: var(--fh-radius);
  height: 100%;
  text-align: center;
}

.fh-statbox-ic{
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,181,0,0.16);
  border: 1px solid rgba(255,181,0,0.24);
  color: #1c130a;
  font-weight: 900;
}

.fh-statbox-num{
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  color: var(--fh-brown);
}

.fh-statbox-label{
  margin-top: 6px;
  font-weight: 650;
  color: var(--fh-muted);
}

/* Dedicated pages mini-hero (uses your theme vars) */
.fh-page-hero{
  padding: 38px 0 20px;
  background:
    radial-gradient(900px 220px at 20% -20%, rgba(255,181,0,0.18), rgba(255,181,0,0) 60%),
    linear-gradient(180deg, rgba(255,181,0,0.06), rgba(255,181,0,0));
  border-bottom: 1px solid rgba(255,181,0,0.18);
}

.fh-page-hero-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}

.fh-page-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fh-brown);
  font-size: clamp(26px, 3.2vw, 44px);
}

.fh-page-subtitle{
  margin: 10px 0 0;
  color: var(--fh-muted);
  max-width: 62ch;
  font-size: 1.02rem;
}

.fh-page-hero-actions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

/* Optional: tighten buttons on very small screens */
@media (max-width: 575px){
  .fh-page-hero{ padding: 28px 0 16px; }
  .fh-page-hero-actions .btn{ padding-left: 14px; padding-right: 14px; }
}

@media (max-width: 991px){
  .fh-page-hero-inner{ align-items:flex-start; flex-direction:column; }
}

/* ---------- Tracking page spacing + form polish ---------- */

/* Give all form-style cards more breathing room */
.fh-form-card,
.fh-contact-card,
.fh-track-result{
  padding: 22px !important;
}

/* Make labels + input spacing calmer */
.fh-form-card .form-label{
  font-weight: 600;
  margin-bottom: 8px;
}

/* Inputs should not feel tight */
.fh-form-card .form-control{
  border-radius: 14px;
  padding: 14px 16px;
}

/* Input group: ensure button and input match height + radius */
.fh-form-card .input-group.input-group-lg .form-control{
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.fh-form-card .input-group.input-group-lg .btn{
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 700;
}

/* Add soft inset background so the form feels "inside" */
.fh-form-card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* Better separation for helper/tips sections */
.fh-form-card .fh-divider{
  margin: 18px 0;
}
.fh-form-card ul{
  margin-bottom: 0;
}

/* Make right panel more premium */
.fh-track-result{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 34px rgba(0,0,0,0.07);
}

/* Empty state style (used below) */
.fh-empty{
  padding: 18px;
  border-radius: var(--fh-radius);
  background: rgba(255,181,0,0.08);
  border: 1px dashed rgba(255,181,0,0.35);
}
.fh-empty-ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,181,0,0.18);
  border: 1px solid rgba(255,181,0,0.28);
  color: var(--fh-brown);
}

/* Timeline card already ok, but add a little room */
.fh-timeline-body{
  padding: 14px 16px;
}

/* On small screens, reduce padding a bit */
@media (max-width: 575px){
  .fh-form-card, .fh-contact-card, .fh-track-result{ padding: 16px !important; }
  .fh-form-card .form-control{ padding: 12px 14px; }
}

/* ===== Tracking page: single centered form ===== */

.fh-track-only{
  max-width: 820px;
  margin: 0 auto;
}

/* More breathing room inside the card */
.fh-track-only.fh-form-card{
  padding: 24px !important;
}

/* Form controls spacing */
.fh-track-only .form-label{
  font-weight: 600;
  margin-bottom: 8px;
}

.fh-track-only .form-control{
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(17,18,20,0.14);
}

.fh-track-only .input-group.input-group-lg .form-control{
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.fh-track-only .input-group.input-group-lg .btn{
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 800;
}

/* Timeline */
.fh-timeline{
  display:flex;
  flex-direction:column;
  gap: 14px;
  margin-top: 8px;
}
.fh-timeline-item{
  display:flex;
  gap: 12px;
}
.fh-timeline-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(255,181,0,0.95);
  box-shadow: 0 0 0 5px rgba(255,181,0,0.12);
  flex: 0 0 12px;
}
.fh-timeline-body{
  flex: 1 1 auto;
  padding: 14px 16px;
  border-radius: var(--fh-radius);
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(0,0,0,0.06);
}

@media (max-width: 575px){
  .fh-track-only.fh-form-card{ padding: 16px !important; }
  .fh-track-only .form-control{ padding: 12px 14px; }
}

/* ===== Smooth slide-down for tracking results ===== */
#fhTrackResults{
  display: block;                 /* keep in flow; JS will toggle via classes */
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 420ms ease, opacity 260ms ease, transform 260ms ease;
  will-change: max-height, opacity, transform;
}

/* when open */
#fhTrackResults.is-open{
  max-height: 1200px;             /* enough for timeline */
  opacity: 1;
  transform: translateY(0);
}

/* small error animation (optional, but nice) */
#fhTrackError{
  transition: opacity 220ms ease;
}

/* ===== Tracking: premium readable layout ===== */
.fh-track-only { max-width: 820px; margin: 0 auto; }
.fh-track-only.fh-form-card { padding: 24px !important; }

#fhTrackResults{
  display:block;
  overflow:hidden;
  max-height:0;
  opacity:0;
  transform: translateY(-6px);
  transition: max-height 420ms ease, opacity 260ms ease, transform 260ms ease;
  will-change: max-height, opacity, transform;
}
#fhTrackResults.is-open{
  max-height: 1600px;
  opacity:1;
  transform: translateY(0);
}

/* Header */
.fh-track-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 2px 2px 8px 2px;
}
.fh-track-head .fh-track-kicker{
  font-size: 13px;
  color: rgba(17,18,20,.62);
  margin-bottom: 2px;
}
.fh-track-head .fh-track-no{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2px;
}
.fh-track-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.fh-btn-compact{
  border-radius: 999px !important;
  padding: 10px 14px !important;
  font-weight: 700;
}

/* Summary (Status + Lane) */
.fh-track-summary{
  margin-top: 10px;
  padding: 16px;
  border-radius: var(--fh-radius);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
}
.fh-track-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575px){
  .fh-track-grid{ grid-template-columns: 1fr; }
}
.fh-track-label{
  font-size: 12px;
  color: rgba(17,18,20,.62);
  margin-bottom: 6px;
}
.fh-track-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .25px;
  background: rgba(255,181,0,0.16);
  color: #3a2b00;
  border: 1px solid rgba(255,181,0,0.26);
}
.fh-track-sub{
  margin-top: 10px;
  color: rgba(17,18,20,.70);
  line-height: 1.55;
  font-size: 14px;
}

/* Updates */
.fh-track-updates{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.fh-updates-title{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 10px;
}
.fh-update-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  margin-bottom: 12px;
}
.fh-update-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 16px;
  background: rgba(255,181,0,0.95);
  box-shadow: 0 0 0 6px rgba(255,181,0,0.12);
  flex: 0 0 12px;
}
.fh-update-card{
  flex: 1;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(0,0,0,0.06);
  display:flex;
  justify-content:space-between;
  gap: 12px;
}
.fh-update-left .fh-update-title{
  font-weight: 800;
  margin-bottom: 2px;
}
.fh-update-left .fh-update-loc{
  color: rgba(17,18,20,.62);
  font-size: 13px;
}
.fh-update-right{
  text-align:right;
  color: rgba(17,18,20,.62);
  font-size: 12.5px;
  white-space: nowrap;
  padding-top: 2px;
}
.fh-track-footnote{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(17,18,20,.62);
  font-size: 13px;
  margin-top: 10px;
}

.track-title{
  color:#000 !important;
}

/* Header brand logo */
.fh-brand-logo{
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 575px){
  .fh-brand-logo{ height: 40px; }
}

.fh-footer-logo{
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
