.sticky-call-bar {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  padding: 0.85rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 -4px 20px rgba(11, 45, 91, 0.18);
}
.sticky-call-bar a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.sticky-call-bar a::before {
  content: '\f095';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

@media (max-width: 768px) {
  .sticky-call-bar { display: block; }
  /* Push page content up so sticky bar doesn't overlap footer */
  body { padding-bottom: 56px; }
}
