/* Footer Stilleri */
.site-footer {
    background-color: #FFFFFF;
    color: #333333;
    position: relative;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
}

/* Ana Footer İçeriği */
.footer-main {
    padding: 60px 0 40px;
}

/* Logo ve Metin Stili */
.footer-logo {
    margin-bottom: 20px;
    max-width: 180px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    margin-left: 20px;
}



.footer-description {
    font-size: 13px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: 20px;
}

/* Footer Başlıkları */
.site-footer h3 {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #333333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Alt Footer */
.footer-bottom {
    position: relative;
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: #E5E5E5;
}

.footer-bottom .container-fluid {
    width: 80%;
    margin: 0 auto;
}

/* Footer Sol Taraf */
.footer-left {
    display: flex;
    align-items: center;
}

/* Footer Dil Seçimi */
.footer-language {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #333333;
    margin-right: 15px;
}

.footer-language a, .footer-language span {
    margin: 0 5px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-language a:hover {
    text-decoration: underline;
}

.footer-language span.active {
    font-weight: 600;
}

/* Footer Telif Hakkı */
.footer-copyright {
    color: #333333;
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Orta Kısım - Yasal Linkler */
.footer-legal-links {
    color: #333333;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Öğeler arasına boşluk ekler */
}

.footer-legal-links a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.footer-legal-links a:hover {
    text-decoration: underline;
}

/* Footer Sosyal Medya */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.social-icon img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .site-footer h3 {
        margin-top: 30px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
}

@media (max-width: 767px) {
    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-left {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-language {
        justify-content: center;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .logo-with-text {
        justify-content: center;
    }
    
    .footer-description {
        text-align: left;
        max-width: 100%;
        padding-left: 15px;
    }
    
    .footer-links-small {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}
