/* --- Modern Koyu Tema Footer Stilleri --- */
.site-footer-dark {
    background-color: #111827; /* İletişim bölümüyle aynı koyu arka plan */
    color: #9ca3af; /* Genel metin rengi */
    padding: 4rem 0 0 0; /* Üstten boşluk, alttan sıfır */
}

.footer-grid-dark {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobilde tek sütun */
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-col-dark .footer-logo img {
    max-height: 50px;
    margin-bottom: 1.5rem;
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #f97116;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: #f97116;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #f97116;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #f97116;
    transform: translateY(-3px);
}

.footer-bottom-dark {
    padding: 1.5rem 0;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom-dark p a {
    color: #f97116; /* Ana tema rengi */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-bottom-dark p a:hover {
    color: #ffffff; /* Üzerine gelince beyaz olsun */
}

/* Tablet (768px ve üstü) */
@media screen and (min-width: 768px) {
    .footer-grid-dark {
        grid-template-columns: repeat(2, 1fr); /* İki sütun */
    }
}

/* Masaüstü (992px ve üstü) */
@media screen and (min-width: 992px) {
    .footer-grid-dark {
        grid-template-columns: 2fr 1fr 1.5fr 1fr; /* Dört sütunlu esnek yapı */
    }
}

