/* Mannpower Services Inc. — Bootstrap 5 theme overrides.
   Palette pulled from the company logo: navy house/text, mid blue swoosh,
   green swoosh, light blue "sparkle" accents. */
:root {
  --navy-900: #0f2647;
  --navy-800: #16345c;
  --navy-700: #1d4573;
  --blue-600: #1f6fd6;
  --blue-500: #2f8bee;
  --blue-100: #e4f1fd;
  --sky-400: #6fc3ef;
  --green-600: #3f9a3a;
  --green-500: #52b64a;
  --green-100: #e8f7e6;
  --ink-900: #101820;
  --ink-700: #3a4652;
  --ink-500: #667485;
  --ink-300: #a3aebb;

  --bs-primary: var(--blue-600);
  --bs-primary-rgb: 31, 111, 214;
  --bs-link-color: var(--blue-600);
  --bs-link-hover-color: var(--navy-800);
  --bs-body-color: var(--ink-900);
  --bs-body-font-family: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

  --shadow-soft: 0 1px 2px rgba(15, 28, 46, 0.05), 0 4px 16px rgba(15, 28, 46, 0.07);
  --shadow-lift: 0 2px 4px rgba(15, 28, 46, 0.06), 0 16px 40px rgba(15, 28, 46, 0.12);
}

body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
a {
  transition: color 0.15s ease;
}
.text-ink-500 { color: var(--ink-500) !important; }
.text-ink-700 { color: var(--ink-700) !important; }
.text-brand { color: var(--blue-600) !important; }
.bg-brand-soft { background: var(--blue-100) !important; }

/* Buttons */
.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}
.btn-success {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border: none;
}
.btn-success:hover { transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-outline-primary {
  color: var(--blue-600);
  border: 2px solid var(--blue-600);
}
.btn-outline-primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--navy-800);
  border: none;
}
.btn-white:hover { background: var(--blue-100); transform: translateY(-1px); }
.btn-call {
  background: var(--green-500);
  color: #fff;
  border: none;
}
.btn-call:hover { background: var(--green-600); color: #fff; transform: translateY(-1px); }

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(15, 28, 46, 0.06);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.navbar-brand img { height: 44px; width: auto; }
.navbar .nav-link {
  font-weight: 600;
  color: var(--ink-700);
  padding: 0.5rem 0.85rem !important;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--blue-600); }
.top-bar {
  background: var(--navy-900);
  color: #fff;
  font-size: 0.85rem;
}
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { color: var(--sky-400); }
.lang-switch a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
}
.lang-switch a.active, .lang-switch a:hover { color: #fff; }

/* Hero */
.hero-section {
  background: linear-gradient(160deg, var(--blue-100) 0%, #fff 55%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 111, 214, 0.16), transparent 70%);
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-100);
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

/* Icon tiles */
.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.icon-tile.green { background: linear-gradient(135deg, var(--green-500), var(--green-600)); }
.icon-tile-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 1rem;
}

/* Service cards */
.service-card {
  border-radius: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-lift { box-shadow: var(--shadow-lift); }

/* Steps / numbers */
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-display);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 55%);
}

.cta-band h1, .cta-band h2, .cta-band h3 { color: #fff; }

/* Forms */
.form-control, .form-select {
  border-radius: 10px;
  border: 1px solid #dbe2ea;
  padding: 0.65rem 0.9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 214, 0.15);
}
.form-label { font-weight: 600; color: var(--ink-700); font-size: 0.92rem; }

/* Reviews */
.review-card {
  border-radius: 18px;
}
.stars { color: #f5a623; }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
}
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-heading { color: #fff; font-weight: 700; margin-bottom: 0.9rem; font-size: 0.95rem; }
.footer-links li { margin-bottom: 0.5rem; }
.site-footer .footer-logo {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  line-height: 0;
}
.site-footer .footer-logo img { height: 52px; width: auto; }

/* Sticky mobile call bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(15, 28, 46, 0.12);
  padding: 0.6rem 0.8rem;
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-call-bar { display: flex; gap: 0.5rem; }
  body { padding-bottom: 72px; }
}

/* Service area badges */
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid #e3e9ef;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: var(--ink-700);
}

/* Before/after */
.ba-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Alerts used by the quote form */
.form-alert { border-radius: 12px; }

/* Skeleton (loading placeholder, reused pattern) */
.skeleton {
  background: linear-gradient(90deg, #eef1f4 25%, #e2e7ec 37%, #eef1f4 63%);
  background-size: 400% 100%;
  animation: sk 1.4s ease infinite;
  border-radius: 8px;
}
@keyframes sk {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}
