/* Floating Call Button */
.floating-call {
    position: fixed;
    right: 20px;
    bottom: 60px;
    background: var(--pink-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    transition: all 0.4s ease;
    z-index: 9999;
}

/* Shrink to icon only */
.floating-call.shrink {
    width: 56px;
    /* fixed width for perfect circle */
    height: 56px;
    /* fixed height for perfect circle */
    padding: 0;
    border-radius: 50%;
    /* perfectly circular */
    justify-content: center;
    gap: 0;
}

.floating-call.shrink .call-number {
    display: none;
}

/* Show full number on hover */
.floating-call.shrink:hover {
    width: auto;
    /* expand width to fit number */
    padding: 12px 20px;
    border-radius: 50px;
}

.floating-call.shrink:hover .call-number {
    display: inline-block;
    margin-left: 8px;
}

/* Call icon image */
.floating-call .call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /* circle behind icon */
    /* background: #fff; */
    /* optional white background for contrast */
}

.floating-call .call-icon img {
    width: 30px;
    height: 30px;
}

/* Responsive */
@media (max-width: 480px) {
    .floating-call {
        padding: 10px 14px;
        font-size: 14px;
    }
}