/* =========================================
   iGrroww.in | Footer Styles
   File: assets/css/footer.css
========================================= */

/* Top Gradient Line */
.footer-top-gradient {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #050505 0%, #00C16A 50%, #050505 100%);
}

/* Footer Link Arrow Hover Effect */
.footer-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
}
.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #00C16A;
    transition: all 0.3s ease;
    font-weight: bold;
}
.footer-link:hover {
    color: #00C16A;
    transform: translateX(20px);
}
.footer-link:hover::before {
    opacity: 1;
}

/* Social Icon Hover Glow */
.social-icon {
    transition: all 0.3s ease;
}
.social-icon:hover {
    border-color: #00C16A;
    color: #00C16A;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0, 193, 106, 0.3);
    background-color: rgba(0, 193, 106, 0.05);
}

/* Floating WhatsApp Button Animation */
@keyframes customBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.whatsapp-float {
    animation: customBounce 3s infinite ease-in-out;
    will-change: transform;
}
.whatsapp-float:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}