/* Footer Stilleri */
footer {
    background: linear-gradient(135deg, #1e293b, #111827);
    color: #e2e8f0;
    padding: 20px;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.footer-icerik {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bolum {
    flex: 1;
    min-width: 160px;
}

.footer-bolum h4 {
    color: #22c55e;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-bolum a, .footer-bolum p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 6px 0;
    text-decoration: none;
    display: block;
}

.footer-bolum a:hover {
    color: #22c55e;
}

.referanslar {
    max-width: 100%;
    margin: 0 auto 20px;
    text-align: center;
}

.referanslar h4 {
    color: #22c55e;
    font-size: 1rem;
    margin-bottom: 12px;
}

.logo-kaydirma {
    overflow: hidden;
    position: relative;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-listesi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: auto;
    animation: none;
}

.logo-listesi img {
    height: 50px;
    margin: 0 15px;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s;
}

.logo-listesi img:hover {
    filter: grayscale(0%);
}

.footer-alt {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 12px;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-alt p {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer-icerik {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    .footer-bolum {
        min-width: 100%;
        text-align: center;
    }

    .logo-kaydirma {
        height: 50px;
    }

    .logo-listesi img {
        height: 40px;
        margin: 0 10px;
    }

    .footer-alt p {
        font-size: 0.75rem;
    }
}