/* Sticky "Call" bar — visible on mobile only, fixed to bottom */
.sticky-call-bar {
  display: none;
}
@media (max-width: 768px) {
  .sticky-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0066cc;
    color: #fff;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  }
  .sticky-call-bar a {
    color: #fff;
    text-decoration: none;
  }
  .sticky-call-bar a:hover {
    text-decoration: underline;
  }
  /* Prevent content from hiding under the bar */
  body { padding-bottom: 52px; }
}
