.contact-links {
    display: flex;
    justify-content: space-evenly;
    padding: 1rem;
}


.icon-link i,
.icon-link svg {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 2rem;
    border-radius: 50%;
    fill: currentColor;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
    animation: fadeInUp 0.6s ease both;
}

.icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
    pointer-events: none;
}

.icon-link:hover {
    transform: translateY(-1rem) scale(1.5);
    z-index: 10;
}

.icon-link.globe {
    color: #007bff;
}

.icon-link.whatsapp {
    color: #25D366;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* btn logi */
.btn-login .animated-button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    border: 4px solid;
    border-color: transparent;
    font-size: 14px;
    background-color: inherit;
    border-radius: 5px;
    font-weight: 600;
    color: #07328d;
    box-shadow: 0 0 0 2px #07328d;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-login .animated-button i {
    position: absolute;
    font-size: 16px;
    fill: #07328d;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-login .animated-button .arr-1 {
    right: 16px;
}

.btn-login .animated-button .arr-2 {
    left: -25%;
}

.btn-login .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #07328d;
    border-radius: 10%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-login .animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-login .animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 20px;
}

.btn-login .animated-button:hover .arr-1 {
    right: -25%;
}

.btn-login .animated-button:hover .arr-2 {
    left: 16px;
}

.btn-login .animated-button:hover .text {
    transform: translateX(12px);
}

.btn-login .animated-button:hover i {
    fill: #212121;
}

.btn-login .animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #07328d;
}

.btn-login .animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}
