.btn-animation-shine {
    border: 1px solid;
    overflow: hidden;
    position: relative;
}

.btn-animation-shine:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.btn-animation-shine:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}





/* CONTACT BUTTON */

.btn-contact {
    position: relative;
    background: var(--primary);
    color: black;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    box-shadow:
        0 0 10px rgba(46, 230, 198, 0.4),
        0 0 20px rgba(46, 230, 198, 0.3);
    transition:
        transform 0.2s ease,
        box-shadow 0.3s ease,
        background 0.25s ease;
}

.btn-contact::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 40%;
    height: 200%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);

    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-contact:hover {
    background: rgba(46, 230, 199, 0.9);
    transform: translateY(-2px);
    box-shadow:
        0 0 15px rgba(46, 230, 198, 0.6),
        0 0 35px rgba(46, 230, 198, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.4);
}

.btn-contact:hover::after {
    transform: rotate(25deg) translateX(250%);
}

.btn-contact:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(46, 230, 198, 0.4);
}

.btn-wrapper {
    position: relative;
    display: inline-block;
}

.btn-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.6;
    }

    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
    }
}