#footer {
    box-sizing: border-box;
    width: 100%;
    background-color: #111827;
    padding: 40px 60px;
    position: relative;
    z-index: 2;
}

#footer * {
    box-sizing: border-box;
}

#footer-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Top */
#footer-top {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

#footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    flex-shrink: 0;
}

#footer-brand img {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(0.55);
}

#footer-brand span {
    font-family: Inter-SemiBold;
    font-size: 15px;
    color: #ffffff;
}

#footer-nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

#footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-family: Inter-Regular;
    font-size: 14px;
    transition: color 0.2s ease;
}

#footer-nav a:hover {
    color: #ffffff;
}

#footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

#footer-socials a {
    display: flex;
    align-items: center;
}

#footer-socials a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(0.55);
    transition: filter 0.2s ease;
}

#footer-socials a:hover img {
    filter: brightness(0) invert(1);
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Contact */
#footer-contact {
    padding: 32px 0;
}

#footer-contact-label {
    font-family: Inter-SemiBold;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 24px;
}

#footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-contact-item strong {
    display: block;
    font-family: Inter-SemiBold;
    font-size: 14px;
    color: #0080FF;
    margin-bottom: 8px;
}

.footer-contact-item p {
    font-family: Inter-Regular;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-contact-item p a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-contact-item p a:hover {
    opacity: 0.75;
}

/* Adres linkinin altına Haritada Gör */
.footer-contact-item p a[href*="google.com/maps"]::after {
    content: ' → Haritada Gör';
    font-size: 12px;
    color: #0080FF;
    display: block;
    margin-top: 4px;
}

/* Bottom */
#footer-bottom {
    padding: 20px 0 4px 0;
}

#footer-bottom p {
    font-family: Inter-Regular;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/*---------- RESPONSIVE ----------*/

@media (max-width: 768px) {
    #footer {
        padding: 30px 24px;
    }

    #footer-top {
        flex-wrap: wrap;
        gap: 20px;
    }

    #footer-nav {
        flex-wrap: wrap;
        gap: 14px;
        margin-left: 0;
        width: 100%;
        order: 3;
    }

    #footer-socials {
        margin-left: auto;
    }

    #footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    #footer {
        padding: 24px 16px;
    }
}
