/* ==========================================================
   MO'CYNO — Sticky CTA
   Bouton flottant de contact visible en permanence
   ========================================================== */

.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #d4af37;
    color: #022C51;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}