﻿.custom-footer {
    background: linear-gradient(135deg, #064e3b 0%, #0d9488 100%);
    color: #ffffff;
    padding: 70px 20px 30px;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid #ffffff50;
    padding-bottom: 8px;
}

.footer-column p,
.footer-column li {
    font-size: 0.95rem;
    color: #f0fdf4;
    line-height: 1.6;
}

.footer-logo-animated {
    width: 140px;
    margin-bottom: 10px;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0f2f1;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #f0fdf4;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #fff;
            text-decoration: underline;
        }

.direction-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

    .direction-link:hover {
        color: #c5f8eb;
        text-decoration: underline;
    }

.footer-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: #ffffff;
    color: #064e3b;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .footer-btn.call:hover {
        background: #22c55e;
        color: #fff;
    }

    .footer-btn.mail:hover {
        background: #0284c7;
        color: #fff;
    }

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.employee-login-btn {
    display: inline-block;
    background: #fff;
    color: #064e3b;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #0d9488;
    grid-column: span 4;
    justify-self: center;
    margin-top: 20px;
}

    .employee-login-btn:hover {
        background: #0d9488;
        color: #fff;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
}

    .footer-bottom p {
        margin: 5px 0;
        font-size: 0.9rem;
        color: #cce6e2;
    }

    .footer-bottom a {
        color: #fff;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #b2f5ea;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        justify-content: center;
    }
}
