/* ============================================================
 * mobile-call-cta.css
 * Styles for the auto-injected mobile call button
 * (rendered before every /booking/ CTA on viewports ≤1023px)
 * ============================================================ */

.mobile-hero-call { display: none; }

@media (max-width: 1023px) {
  .mobile-hero-call {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff !important;
    border: 1px solid #15803d;
    font-weight: 700;
    font-size: 17px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
    animation: mobileCallPulse 2.4s ease-in-out infinite;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
  }
  .mobile-hero-call:hover,
  .mobile-hero-call:focus {
    background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.5);
  }
  .mobile-hero-call:active {
    transform: translateY(0);
  }
}

@keyframes mobileCallPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35); }
  50%      { box-shadow: 0 4px 22px rgba(22, 163, 74, 0.7); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-hero-call { animation: none; }
}
