/* Footer Enhancements & 3D Machine Icons */

/* Footer Link Hover Effects */
.footer-link {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-link:hover .footer-link-text {
    color: #6df780;
    text-shadow: 0 0 10px rgba(109, 247, 128, 0.4);
    transform: translateX(5px);
}

.footer-link-text {
    transition: all 0.3s ease;
}

/* 3D Machine Social Icons */
.social-icon-area {
    display: flex;
    gap: 15px;
}

.social-icon-wrap {
    width: 48px;
    height: 48px;
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon-wrap:hover {
    transform: translateY(-5px) scale(1.1);
}

.machine-social-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.plate-bg {
    fill: #1a1a1a;
    stroke: #333;
    stroke-width: 1;
}

.plate-inner {
    fill: #222;
}

.screw {
    fill: #444;
}

.social-logo-path {
    fill: #888;
    transition: all 0.3s ease;
}

.social-icon-wrap:hover .social-logo-path {
    fill: #6df780;
    filter: drop-shadow(0 0 5px rgba(109, 247, 128, 0.5));
}

.social-icon-wrap:hover .plate-bg {
    stroke: #6df780;
    stroke-opacity: 0.5;
}

/* Footer Bottom Link Text Hover */
.footer-bottom-text {
    transition: color 0.3s ease;
}

.footer-bottom-text:hover {
    color: #6df780;
}