/* ═══════════════════════════════════════
   STICKY MOBILE BOTTOM CTA BAR
   Visible only on mobile — the single
   highest-converting element for
   Google Ads mobile landing pages.
═══════════════════════════════════════ */

.mobile-cta-bar {
  display: none; /* hidden on desktop */
}

@media (max-width: 991.98px) {

  .mobile-cta-bar {
    display: none !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0d0d0d;
    border-top: 1px solid rgba(32, 194, 14, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    height: 68px;
    align-items: stretch;
  }

  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    transition: background 0.18s ease;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-cta-bar a svg,
  .mobile-cta-bar a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  /* Call button */
  .mobile-cta-bar .mbar-call {
    background: #1a1a1a;
    border-right: 1px solid rgba(255,255,255,0.07);
    color: #fff;
  }

  .mobile-cta-bar .mbar-call:active,
  .mobile-cta-bar .mbar-call:hover {
    background: #252525;
  }

  /* WhatsApp button — green */
  .mobile-cta-bar .mbar-whatsapp {
    background: #20C20E;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .mobile-cta-bar .mbar-whatsapp::before {
    content: 'FASTEST';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
  }

  .mobile-cta-bar .mbar-whatsapp svg,
  .mobile-cta-bar .mbar-whatsapp img {
    margin-top: 10px;
  }

  .mobile-cta-bar .mbar-whatsapp .mbar-label {
    margin-top: -2px;
  }

  .mobile-cta-bar .mbar-whatsapp:active,
  .mobile-cta-bar .mbar-whatsapp:hover {
    background: #18a30c;
  }

  /* Telegram button */
  .mobile-cta-bar .mbar-telegram {
    background: #1a1a1a;
    border-left: 1px solid rgba(255,255,255,0.07);
    color: #fff;
  }

  .mobile-cta-bar .mbar-telegram:active,
  .mobile-cta-bar .mbar-telegram:hover {
    background: #252525;
  }

  /* Icon colours */
  .mbar-call svg { color: #4FC3F7; }
  .mbar-telegram svg { color: #29B6F6; }
}

/* ── Very small screens ── */
@media (max-width: 360px) {
  .mobile-cta-bar {
    height: 62px;
  }

  .mobile-cta-bar a {
    font-size: 0.62rem;
  }
}
