.footerz {
    color: #fff;
    padding: 60px 8%;
    position: relative;
    overflow: hidden;
}

.footerz-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    z-index: 2;
    position: relative;
    animation: footerz-fadeInUp 1s ease forwards;
    opacity: 0;
}

.footerz-col h3 {
    color: #4A90E2;
    margin-bottom: 15px;
    font-size: 18px;
}

.footerz-logo h2 {
    color: #4A90E2;
    margin-bottom: 10px;
    font-size: 26px;
}

.footerz-logo p {
    color: #ccc;
    line-height: 1.5;
}

.footerz ul {
    list-style: none;
    padding: 0;
}

.footerz li {
    margin: 8px 0;
}

/* Footer Link Hover Güncellemesi */
.footerz a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

    /* Hover olunca renk değişimi ve alt çizgi */
    .footerz a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background-color: #4A90E2;
        transition: width 0.3s ease;
    }

    .footerz a:hover {
        color: #4A90E2;
    }

        .footerz a:hover::after {
            width: 100%;
        }

/* Sosyal ikonlar da aynı renk geçişine sahip */
.footerz-social a {
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
}

    .footerz-social a:hover {
        color: #4A90E2;
        transform: translateY(-5px);
    }


.footerz p {
    color: #ccc;
    margin: 6px 0;
    font-size: 15px;
}

.footerz i {
    color: #4A90E2;
    margin-right: 8px;
}

.footerz-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

    .footerz-social a {
        color: #ccc;
        font-size: 20px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

        .footerz-social a:hover {
            color: #f3961c;
            transform: translateY(-5px);
        }

.footerz-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
    animation: footerz-fadeIn 1.2s ease forwards;
    opacity: 0;
}



/* Animasyonlar */
@keyframes footerz-fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerz-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Arka plan parlayan efekt */
.footerz::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: footerz-bgMove 15s linear infinite;
    z-index: 1;
}

@keyframes footerz-bgMove {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8%, 8%);
    }

    100% {
        transform: translate(0, 0);
    }
}

.footerz-dev {
    margin-top: 5px;
    color: #888;
    font-size: 13px;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
