/* ==========================================
   FOOTER GENEL AYARLAR
   ========================================== */
.site-footer {
    background: #09090b; /* Header'daki siyah tonla birebir uyumlu */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid var(--red); /* Siteyi keskin bir çizgiyle bitiriyoruz */
    position: relative;
    z-index: 10;
}

.container-footer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    padding: 80px 0 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; /* Kolon oranları */
    gap: 60px;
}

/* --- 1. KOLON: LOGO VE AÇIKLAMA --- */
.footer-logo {
    display: block;
    margin-bottom: 25px;
}
.footer-logo img {
    max-height: 80px; /* Logonu buraya sığdırır */
    width: auto;
}
.footer-desc {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.4);
}

/* --- 2. VE 3. KOLON BAŞLIKLARI --- */
.footer-heading {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--red);
    border-radius: 5px;
}

/* --- 2. KOLON: HIZLI MENÜ --- */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links li a {
    color: #a0a0a0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.footer-links li a i {
    font-size: 10px;
    color: var(--red);
    transition: transform 0.3s;
}
.footer-links li a:hover {
    color: #fff;
    padding-left: 5px; /* Üzerine gelince tatlı bir şekilde sağa kayar */
}
.footer-links li a:hover i {
    transform: translateX(3px);
}

/* --- 3. KOLON: İLETİŞİM --- */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.f-icon {
    width: 35px;
    height: 35px;
    background: rgba(227, 6, 19, 0.1);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.footer-contact-list li:first-child .f-icon {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #a0a0a0;
}
.f-text {
    display: flex;
    flex-direction: column;
}
.f-text strong {
    font-size: 13px;
    color: #fff;
    margin-bottom: 3px;
    font-weight: 600;
}
.f-text span {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.5;
}
.f-text a {
    font-size: 16px;
    color: var(--red);
    font-weight: 700;
    transition: color 0.3s;
}
.f-text a:hover {
    color: #fff;
}

/* --- EN ALT COPYRIGHT ALANI VE İMZA --- */
.footer-bottom {
    background: #040405; 
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bottom-flex p {
    color: #888;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.bottom-flex p strong {
    color: #fff;
}

/* PEKSOFT İmza Ayarları */
.bottom-signature a {
    color: #888;
    font-size: 13px;
    transition: all 0.3s;
    text-transform: uppercase;
}
.bottom-signature a span {
    color: var(--red);
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 4px;
}
.bottom-signature a:hover {
    color: #fff;
}

/* Mobilde Alt Alta Ortalı Görünmesi İçin */
@media (max-width: 768px) {
    .bottom-flex { 
        flex-direction: column; 
        gap: 12px; 
        text-align: center; 
    }
}

/* ==========================================
   MOBİL UYUMLULUK
   ========================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .about-col {
        grid-column: 1 / -1; /* İlk kolon üstte tam genişlik olur */
    }
}

@media (max-width: 768px) {
    .footer-top { padding: 60px 0 40px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-logo { display: flex; justify-content: center; }
    .footer-desc { text-align: center; }
    .footer-social { justify-content: center; }
    
    .footer-heading { text-align: center; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .footer-links { align-items: center; }
    
    .bottom-flex { flex-direction: column; gap: 15px; text-align: center; }
}