.footer-link {
    color: #f5f7fa;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    opacity: 1;
    transform: translateX(5px);
    color: #ffffff; 
}

.hover-highlight:hover {
    text-decoration: underline !important;
    opacity: 1 !important;
}

.tracking-wide {
    letter-spacing: 1px;
}

.social-icon-link {
    font-size: 1.5rem;
    color: #f5f7fa;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.social-icon-link.bi-facebook:hover { color: #1877F2; }
.social-icon-link.bi-telegram:hover { color: #24A1DE; }

.social-icon-link.bi-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border: none;
}

.social-icon-link.bi-tiktok:hover {
    background-color: #000000;
    color: #ffffff;
    text-shadow: 2px 2px 0px #FE2C55, -2px -2px 0px #25F4EE;
}

.opacity-hover {
    transition: opacity 0.3s;
}
.opacity-hover:hover {
    opacity: 0.8;
}