
.site-footer {
    background: #fff;
    border-top: 1px solid #eee;
    font-family: 'Segoe UI', sans-serif;
}

/* ÜST */
.footer-top {
   max-width: 1223px;
    margin: auto;
    padding: 50px 22px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    height: 55px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 420px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* SAĞ */
.footer-right {
    flex: 1;
    max-width: 420px;
}

.footer-right h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.newsletter button {
    background: #769900;
    color: #fff;
    border: none;
    padding: 15px 10px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* SOSYAL */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid #769900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #769900;
    transition: .3s;
}

.footer-socials a:hover {
    background: #769900;
    color: #fff;
}

/* ALT */
.footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #777;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: #777;
    text-decoration: none;
}

/* 📱 MOBİL */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-desc {
        margin: 0 auto 25px;
    }

    .footer-links {
        justify-content: center;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
