/* ═══════════════════════════════════════════
   METRO MANPOWER — HEADER STYLES
   Top bar + main navigation header + mobile menu
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.top-bar{position:fixed;top:0;left:0;right:0;z-index:1001;background:#e8eef7;height:var(--topbar-h);display:flex;align-items:center;border-bottom:1px solid rgba(11,18,32,.08)}
.top-bar-in{width:100%;display:flex;align-items:center;justify-content:space-between;padding:0 48px;gap:16px}
.top-bar-left{display:flex;align-items:center;gap:20px}
.top-bar-item{display:inline-flex;align-items:center;gap:6px;color:var(--muted);font-size:12px;font-weight:600;text-decoration:none;transition:color .2s}
.top-bar-item:hover{color:var(--dark)}
.top-bar-item svg{width:13px;height:13px;opacity:.6}
.top-bar-sep{width:1px;height:14px;background:rgba(11,18,32,.12)}
.top-bar-right{display:flex;align-items:center;gap:16px}
.top-bar-badge{display:inline-flex;align-items:center;gap:5px;color:var(--muted);font-size:11px;font-weight:600;letter-spacing:.02em}
.top-bar-badge::before{content:"";width:4px;height:4px;border-radius:50%;background:rgba(11,18,32,.12)}
@media(max-width:991px){.top-bar{display:none}}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.hd{position:fixed;top:var(--topbar-h);left:0;right:0;z-index:1000;background:rgba(255,255,255,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid rgba(11,18,32,.06);transition:box-shadow .3s}
.hd.scrolled{box-shadow:0 4px 24px rgba(11,18,32,.06)}
.hd-in{display:flex;align-items:center;justify-content:space-between;height:72px;padding:0 48px}
.hd-logo{display:flex;align-items:center;text-decoration:none}
.hd-logo img{height:44px;width:auto;display:block}
.hd-mark{width:32px;height:32px;background:var(--blue);display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;font-weight:800}
.ft-brand img{height:40px;width:auto;display:block}
.hd-nav{display:flex;align-items:center;gap:6px;list-style:none}
.hd-item{position:relative}
.hd-link{display:flex;align-items:center;gap:4px;padding:8px 16px;color:var(--dark);font-size:14px;font-weight:600;transition:color .2s}
.hd-link:hover,.hd-link.active{color:var(--blue)}
.hd-link svg{width:12px;height:12px;opacity:.5;transition:transform .2s}
.hd-dd{position:absolute;top:100%;left:0;min-width:240px;padding:10px 0;background:var(--white);border:1.5px solid var(--line);box-shadow:0 16px 48px rgba(11,18,32,.12);opacity:0;visibility:hidden;transform:translateY(8px);transition:all .25s;z-index:100}
.hd-item:hover .hd-dd{opacity:1;visibility:visible;transform:translateY(0)}
.hd-dd a{display:block;padding:10px 20px;font-size:13.5px;font-weight:500;color:var(--dark);transition:all .2s}
.hd-dd a:hover{background:var(--blue-light);color:var(--blue);padding-left:24px}
.hd-right{display:flex;align-items:center;gap:10px}
.hd-cta-ghost{display:inline-flex;align-items:center;gap:6px;min-height:40px;padding:0 18px;background:transparent;color:var(--dark);font-size:12.5px;font-weight:700;border:1.5px solid var(--line-dark);border-radius:var(--radius-pill);transition:all .24s;text-decoration:none;cursor:pointer;font-family:var(--font)}
.hd-cta-ghost:hover{color:var(--blue);border-color:rgba(11,32,182,.22);background:var(--blue-light);transform:translateY(-1px)}
.hd-cta-ghost svg{width:14px;height:14px}
.hd-cta{display:inline-flex;align-items:center;gap:6px;min-height:40px;padding:0 18px;background:var(--blue);color:#fff;font-size:12.5px;font-weight:700;border-radius:var(--radius-pill);transition:all .24s;text-decoration:none}
.hd-cta:hover{background:var(--blue-hover);transform:translateY(-1px)}
.hd-cta svg{width:14px;height:14px}
.hd-ham{display:none;width:40px;height:40px;align-items:center;justify-content:center;background:none;border:none;color:var(--dark)}
.hd-ham svg{width:22px;height:22px}
.hd-mob{display:none;position:fixed;top:72px;left:0;right:0;bottom:0;background:var(--white);z-index:999;padding:24px 20px 40px;overflow-y:auto}
.hd-mob.active{display:block}
.hd-mob a{display:block;padding:14px 0;font-size:16px;font-weight:600;color:var(--dark);border-bottom:1px solid var(--line)}
.hd-mob .sub-l{font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);padding:18px 0 8px;border-bottom:none}
.hd-mob-ctas{display:flex;flex-direction:column;gap:10px;margin-top:24px}
@media(max-width:991px){.hd{top:0}.hd-nav{display:none}.hd-ham{display:flex}.hd-cta,.hd-cta-ghost{display:none}.hd-in{padding:0 20px}}

