/* SureJobs Floating CTA - lightweight, no dependencies */
#sjfc-banner {
  position: fixed;
  z-index: 999999;
  width: 260px;
  height: 116px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f7941e 0%, #ef6c2a 45%, #2b3f8c 100%);
  box-shadow: 0 12px 30px rgba(20, 30, 80, 0.35);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease, top 1.2s ease, left 1.2s ease;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
#sjfc-banner.sjfc-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: sjfc-float 3.2s ease-in-out infinite;
}
@keyframes sjfc-float {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-9px) }
}
#sjfc-banner .sjfc-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
#sjfc-banner .sjfc-logo {
  position: relative;
  width: 52px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 4px;
}
#sjfc-banner .sjfc-text {
  position: relative;
  line-height: 1.25;
  color: #ffffff;
}
#sjfc-banner .sjfc-l1 {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  animation: sjfc-blink 1.1s steps(1, end) infinite;
}
#sjfc-banner .sjfc-l2 {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #ef6c2a;
  animation: sjfc-blink 1.1s steps(1, end) infinite 0.55s;
}
@keyframes sjfc-blink {
  0%, 49% { opacity: 1 }
  50%, 100% { opacity: 0.25 }
}
#sjfc-banner .sjfc-close {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 480px) {
  #sjfc-banner { width: 210px; height: 100px; }
  #sjfc-banner .sjfc-l1 { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  #sjfc-banner, #sjfc-banner.sjfc-show, #sjfc-banner .sjfc-l1, #sjfc-banner .sjfc-l2 { animation: none !important; }
}
