/* Demo content
.demo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
}

.fixed-call-button {
    position: fixed;
    bottom: 143px;
    right: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-number-box {
    background: linear-gradient(135deg, #65CA7B 0%, #4CAF50 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(101, 202, 123, 0.3);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.phone-number-box i {
    font-size: 16px;
    color: white;
}

.call-icon-button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #65CA7B 0%, #4CAF50 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(101, 202, 123, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.call-icon-button i {
    font-size: 22px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
    position: relative;
}

.call-icon-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

.call-icon-button i {
    animation: shake 2s infinite;
}

.fixed-call-button:hover .phone-number-box {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.fixed-call-button:hover .call-icon-button {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(101, 202, 123, 0.6);
}

.fixed-call-button:hover .call-icon-button i {
    animation: none;
    transform: scale(1.1);
}

.fixed-call-button:active .call-icon-button {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .fixed-call-button {
        bottom: 20px;
        right: 20px;
    }

    .call-icon-button {
        width: 40px;
        height: 40px;
    }

    .call-icon-button i {
        font-size: 18px;
    }

    .phone-number-box {
        font-size: 14px;
        padding: 10px 16px;
    }
}
@media (prefers-reduced-motion: reduce) {

    .call-icon-button::before,
    .call-icon-button i {
        animation: none;
    }

    .phone-number-box,
    .call-icon-button,
    .call-icon-button i {
        transition: none;
    }
} */


.roi-sticky-btn {
    position: fixed;
    bottom: 70px;
    right: 36px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 14px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #3db657 0%, #238538 100%);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgb(101 202 123 / 45%), 0 1px 4px rgba(0, 0, 0, 0.15);
    animation: roi-entrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both, roi-float 3.6s ease-in-out 0.6s infinite;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    will-change: transform;
}

/* Shimmer sweep */
.roi-sticky-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(110deg,
            transparent 30%,
            rgba(255, 255, 255, 0.22) 50%,
            transparent 70%);
    background-size: 200% 100%;
    background-position: -100% 0;
    animation: roi-shimmer 2.8s ease-in-out 1.2s infinite;
}

/* Pulse ring */
.roi-sticky-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 54px;
    border: 2px solid rgb(101 202 123 / 50%);
    animation: roi-pulse 2.4s ease-out 0.8s infinite;
}

/* Icon wrapper */
.roi-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.18s ease;
}

.roi-btn-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Text stack */
.roi-btn-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}

.roi-btn-text span:first-child {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.roi-btn-text span:last-child {
    font-size: 14.5px;
    font-weight: 600;
}

/* Arrow badge */
.roi-btn-arrow {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    opacity: 0.85;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

/* Hover state */
.roi-sticky-btn:hover {
    background: linear-gradient(135deg, #3db657 0%, #238538 100%);
    box-shadow:
        0 8px 32px rgb(101 202 123 / 55%),
        0 2px 8px rgba(0, 0, 0, 0.2);
    animation: roi-entrance 0s, none;
    /* stop float on hover */
    transform: translateY(-3px) scale(1.02);
    color: #fff;
}

.roi-sticky-btn:hover .roi-btn-icon {
    transform: rotate(-10deg) scale(1.1);
}

.roi-sticky-btn:hover .roi-btn-arrow {
    transform: translate(3px, -3px);
    opacity: 1;
}

.roi-sticky-btn:active {
    transform: scale(0.97);
    box-shadow:
        0 3px 12px rgba(26, 86, 219, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ── Keyframes ─────────────────────────────────────── */
@keyframes roi-entrance {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.88);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes roi-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes roi-shimmer {
    0% {
        background-position: -100% 0;
    }

    50%,
    100% {
        background-position: 200% 0;
    }
}

@keyframes roi-pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(1.18);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 480px) {
    .roi-sticky-btn {
        bottom: 20px;
        right: 16px;
        padding: 12px 18px 12px 14px;
    }

    .roi-btn-text span:last-child {
        font-size: 13px;
    }
}

/* ══════════════════════════════════════════════════════
       END — Copy above for your page
    ══════════════════════════════════════════════════════ */

.scroll-top.open {
    bottom: 250px;
}
/* .intercom-lightweight-app {
    right: 50px !important;   
    bottom: 160px !important;
    position: fixed !important; 
 
}

.intercom-launcher {
    right: 50px !important;
    bottom: 160px !important;
    position: fixed !important;
   
} */
/* .intercom-lightweight-app-launcher {
    max-width: 60px !important;
    max-height: 60px !important;
}
.intercom-lightweight-app-messenger {
    width: 300px !important;  
    height: 300px !important; 
    max-height: 300px !important;
} */
/* .intercom-app {
    width: 400px !important;      
    height: 600px !important;     
} */
/* .intercom-lightweight-app-launcher-icon{
    width: 56px !important;
    height: 57px !important;
} */
/* .intercom-ou5zg8 {
    bottom: 250px !important;
} */