/* Mobile Click-to-Call Sticky Bar */

@keyframes ncctv-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: stretch;
    z-index: 9999;
    animation: ncctv-slide-up 0.4s ease 0.4s both;
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-cta-bar {
      animation: none;
    }
  }

  .mobile-cta-bar.is-hidden {
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .mobile-cta-bar__call,
  .mobile-cta-bar__whatsapp {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    text-decoration: none;
    color: #ffffff;
    padding: 0.5rem;
    transition: filter 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-cta-bar__call:active,
  .mobile-cta-bar__whatsapp:active {
    filter: brightness(0.9);
  }

  .mobile-cta-bar__call {
    background-color: var(--color-navy);
  }

  .mobile-cta-bar__whatsapp {
    background-color: #25D366;
  }

  .mobile-cta-bar__divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
  }

  .mobile-cta-bar__label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1;
  }

  .mobile-cta-bar__number {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .mobile-cta-bar__sublabel {
    font-size: 0.7rem;
    opacity: 0.85;
    line-height: 1;
  }

  .mobile-cta-bar svg {
    flex-shrink: 0;
  }
}

/* Hide on larger screens */
@media (min-width: 769px) {
  .mobile-cta-bar {
    display: none;
  }
}

@media print {
  .mobile-cta-bar {
    display: none;
  }
}
