/* Footer Styles */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 20px 30px;
    font-family: Arial, sans-serif;
    animation: fadeInUp 1.5s ease forwards;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
    animation: fadeInUp 1s ease forwards;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    border-bottom: 2px solid var(--color-white);
    padding-bottom: 10px;
}

.footer-section p,
.footer-section ul {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-accent);
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-white);
}

/* Icons in Contact */
.footer-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

/* Contact Button */
.footer-section.contact .btn-secondary {
    margin-top: 15px;
    display: inline-block;
}

/* Social Media Icons */
.footer-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-social-icons .social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social-icons .social-icon img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.footer-social-icons .social-icon:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--color-accent);
    border-top: 1px solid var(--color-secondary);
    padding-top: 15px;
}

.made-by a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.made-by a:hover {
    color: var(--color-white);
}

.made-by-logo {
    width: 30px;
    height: 30px;
    display: block;
    transition: transform 0.3s ease;
}

.made-by a:hover .made-by-logo {
    transform: scale(1.1);
}

.footer-branch{
    margin: 20px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 400px) {
    .footer-section {
        min-width: 100%;
    }
}
