/* Phone Animation Styles */
.phone-animate {
    display: inline-flex;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    color: inherit;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.phone-animate:hover {
    color: #324b43; /* Pickvan primary color */
    transform: scale(1.02);
}

.phone-digit {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    min-width: 0.6em;
    text-align: center;
}
