﻿/* Footer Main Container */
.custom-footer {
    background: linear-gradient(135deg, #054b29, #0b8e5d);
    color: white;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
    animation: fadeInFooter 1.2s ease-in-out;
}

/* Footer Columns Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Logo Section */
.footer-logo-section {
    text-align: left;
}

.footer-logo-animated {
    width: 90px;
    animation: floatLogo 3s ease-in-out infinite;
}

.footer-company-name {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Section Titles */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 12px;
    border-bottom: 2px solid #ffdd57;
    display: inline-block;
    padding-bottom: 4px;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin: 8px 0;
    }

        .footer-links li a {
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }

            .footer-links li a:hover {
                color: #ffdd57;
                transform: translateX(5px);
            }

/* Contact Info */
.footer-column p {
    margin: 6px 0;
    font-size: 14px;
}

.direction-link {
    color: #ffdd57;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .direction-link:hover {
        color: white;
    }

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    opacity: 0.9;
}

    .footer-bottom a {
        color: #ffdd57;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: white;
        }

/* Animations */
@keyframes fadeInFooter {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer-logo-section,
    .footer-column {
        text-align: center;
    }

    .footer-logo-animated {
        margin-bottom: 10px;
    }
}
