/* ─── Floating Contact Widget ─────────────────────────────────────────────── */

.cf-widget {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 10px;
    background: #FFFFFF66;
    -webkit-backdrop-filter: blur(6px);
    border-radius: 10px;
    border: 1px solid #0C304D;
    backdrop-filter: blur(21.69974708557129px);
}

.cf-widget--bottom-right {
    bottom: 32px;
    right: 20px;
}

.cf-widget--bottom-left {
    bottom: 32px;
    left: 20px;
}

.cf-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #0C304D;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    overflow: hidden;
    flex-shrink: 0;
}

.cf-item:hover {
    transform: scale(1.1);
    border: 1px solid #0C304D;
}

/* Responsive mobile */
@media (max-width: 480px) {
    .cf-item {
        width: 44px;
        height: 44px;
    }
    .cf-item svg {
        width: 44px;
        height: 44px;
    }
    .cf-widget {
        padding: 10px 8px;
        gap: 8px;
    }
}
