/* ============================
   FLOATING CTA
============================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

/* MESSAGE BUBBLE */
.cta-message {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: #0b1224;
    color: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

    /* 🔥 width control */
    min-width: 260px;
    max-width: 300px;

    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}


/* little arrow */
.cta-message::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0b1224;
}

/* SHOW MESSAGE */
.floating-cta.show .cta-message {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTON */
.cta-button {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    background: #f5c542;
    color: #111;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(245, 197, 66, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 45px rgba(245, 197, 66, 0.6);
}

/* MOBILE */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .cta-message {
        font-size: 13px;
        max-width: 190px;
    }
}
