﻿/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #2e8b57, #1c3c73, #4caf50, #2196f3);
    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Segoe UI", sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
    animation: bounceIn 2s ease-in-out;
}

.footer-about h2 {
    margin: 10px 0;
    font-size: 32px;
    color: #ffeb3b;
}

.slogan {
    font-style: italic;
    font-size: 14px;
    opacity: 0.9;
}

.footer-links h3,
.footer-products h3,
.footer-contact h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #ffd700;
    border-bottom: 2px solid #fff;
    display: inline-block;
}

.footer-links ul,
.footer-products ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-products li {
    margin: 8px 0;
}

.footer-links a,
.footer-products a,
.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-links a:hover,
    .footer-products a:hover,
    .footer-contact a:hover {
        color: #ff9800;
        transform: translateX(5px);
    }

.map-link {
    display: inline-block;
    margin-top: 10px;
    background: #ff9800;
    padding: 5px 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

    .map-link:hover {
        background: #ff5722;
    }

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.arb-link {
    color: #00e5ff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

    .arb-link:hover {
        color: #ff4081;
    }

/* Animations */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
