/* Sticky Mobile Conversion Bar — Call | WhatsApp | View Fare
   Mobile-only. Desktop keeps the existing floating WhatsApp button. */
.sticky-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    background: #ffffff;
    border-top: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.sticky-cta-bar.is-visible {
    transform: translateY(0);
}

.sticky-cta-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 10px 4px 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1c1917;
    text-decoration: none;
    border-right: 1px solid rgba(28, 25, 23, 0.06);
}

.sticky-cta-bar a:last-child {
    border-right: none;
}

.sticky-cta-bar a iconify-icon {
    font-size: 18px;
}

.sticky-cta-bar .sticky-cta-call {
    color: #1E4B8B;
}

.sticky-cta-bar .sticky-cta-whatsapp {
    background: #25D366;
    color: #fff;
}

.sticky-cta-bar .sticky-cta-fare {
    color: #b45309;
}

/* Space for the bar so it never covers page content on mobile */
body.has-sticky-cta {
    padding-bottom: 64px;
}

@media (min-width: 768px) {
    .sticky-cta-bar {
        display: none !important;
    }
    body.has-sticky-cta {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .sticky-cta-bar {
        display: grid;
    }
    /* Avoid two competing WhatsApp affordances on mobile once the bar is present */
    body.has-sticky-cta .whatsapp-float {
        display: none;
    }
}
