/* Sticky CTA Bottom Bar */
.sticky-cta-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    box-sizing: border-box;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta-bottom.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 14px 24px;
    background: linear-gradient(135deg, #22aea1 0%, #1d9b8f 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 174, 161, 0.3);
}

.sticky-cta-button:hover {
    background: linear-gradient(135deg, #1d9b8f 0%, #1a8a7e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 174, 161, 0.4);
}

/* Desktop: Always visible */
@media (min-width: 769px) {
    .sticky-cta-bottom {
        display: block;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* Push Superchat chatbot above sticky CTA bar */
@media (min-width: 769px) {
    #superchat-widget,
    [id^="superchat"],
    iframe[src*="superchat"] {
        bottom: 80px !important;
    }
}
