/* Canonical ITFixLab site shell — matches /fixes/ header */
.site-shell-navbar.navbar {
  width: 100%;
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 9, 20, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-shell-navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #f8fafc;
  text-decoration: none;
}
.site-shell-navbar .logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.site-shell-navbar .logo span {
  font-size: 22px;
  letter-spacing: -0.5px;
}
.site-shell-navbar .logo-blue { color: #38bdf8; }
.site-shell-navbar nav { display: flex; align-items: center; }
.site-shell-navbar nav a {
  margin-left: 24px;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}
.site-shell-navbar nav a:hover { color: #38bdf8; }
.site-shell-navbar nav a[aria-current="page"] { color: #e0f2fe; }
.site-shell-navbar nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  box-shadow: 0 0 12px rgba(56, 189, 248, .55);
}
.site-shell-footer {
  padding: 26px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  background: #050914;
}
.site-shell-footer p { margin: 0; color: #94a3b8; }
.site-shell-footer a { color: #38bdf8; text-decoration: none; }
.site-shell-footer a:hover { color: #7dd3fc; }
@media (max-width: 768px) {
  .site-shell-navbar.navbar { flex-direction: column; gap: 14px; padding: 16px 6%; }
  .site-shell-navbar nav { flex-wrap: wrap; justify-content: center; }
  .site-shell-navbar nav a { margin: 0 8px; font-size: 14px; }
  .site-shell-footer { padding: 24px 6%; gap: 14px; }
}
