

/* ==========================================================================
   PINK CONTACT LINK
   ========================================================================== */
.nav-contact {
    color: #FF005C !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 92, 0.3);
    position: relative;
}

.nav-contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF005C, #00C2FF);
    transition: width 0.3s ease;
}

.nav-contact:hover::after {
    width: 100%;
}

.nav-contact:hover {
    color: #FF005C !important;
    background: rgba(255, 0, 92, 0.1) !important;
    box-shadow: 0 0 20px rgba(255, 0, 92, 0.2);
}
