/* Kankacım, Footer Stilleri - MAVİ & TURUNCU KONSEPT */

.site-footer {
    background-color: #111111; /* Koyu antrasit zemin */
    color: #b0b0b0; /* Göz yormayan gri metin */
    padding: 70px 0 0;
    font-size: 14px;
    position: relative;
    /* Üstüne MAVİ (#317da8) bir şerit, imza niteliğinde */
    border-top: 5px solid #317da8; 
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* --- KOLONLAR --- */
.footer-col {
    flex: 1;
    min-width: 280px; /* Mobilde alt alta geçsin */
}

/* 1. Kolon: Logo ve Slogan */
.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    background-color: white; /* Logo transparan değilse arkasına beyaz atalım */
    padding: 5px;
    border-radius: 5px;
}

.footer-slogan {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* 2. Kolon: Hızlı Menü */
.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    /* Başlık altı çizgi MAVİ (#317da8) */
    background-color: #317da8; 
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 12px;
    /* Oklar TURUNCU (#e68f23) olsun ki yönlendirme olduğu belli olsun */
    color: #e68f23; 
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px); /* Sağa kayma efekti */
}

/* 3. Kolon: İletişim */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-icon {
    min-width: 35px;
    height: 35px;
    /* MAVİ tint arka plan */
    background-color: rgba(49, 125, 168, 0.1);
    /* İkon rengi MAVİ (#317da8) */
    color: #317da8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 16px;
}

.contact-text strong {
    display: block;
    color: #ffffff;
    margin-bottom: 3px;
    font-size: 15px;
}

/* Sosyal Medya İkonları */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: #222;
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-btn:hover {
    /* Hover olunca MAVİ (#317da8) */
    background-color: #317da8;
    border-color: #317da8;
    transform: translateY(-3px);
}

/* --- ALT TELİF ÇUBUĞU --- */
.footer-bottom {
    background-color: #0a0a0a; /* Footer'dan bir tık daha koyu */
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid #222;
}

.bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    color: #888;
}

.design-by {
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.design-by a {
    /* Tasarım linki TURUNCU (#e68f23) */
    color: #e68f23;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.design-by a:hover {
    color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }
}