/* Bu dosya assets/footer.css
  Sitenin en alt bölümü (Footer).
  Ana Renk: #4b975f
*/
.site-footer {
    font-family: 'Inter', sans-serif;
    /* Diğer açık renkli bölümlerle uyumlu */
    background-color: #f8fdf9; 
    padding-top: 5rem;
    color: #555;
    /* Form bölümünden ayırmak için üst çizgi */
    border-top: 1px solid #e6f7eb; 
}

.footer-grid {
    display: grid;
    /* Teknolojik Grid: 
      Otomatik olarak sığdığı kadar sütun oluşturur. 
      Her sütun en az 250px olur. 
      Mobilde otomatik olarak alt alta geçer.
    */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem; /* Sütunlar arası boşluk */
}

/* Tüm Sütunlar (Genel) */
.footer-col {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Sütun 1: Logo ve Slogan */
.footer-col.about .footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-col.about .footer-slogan {
    color: #444;
}

/* Sütun Başlıkları (Hızlı Sayfalar, İletişim vb.) */
.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Sütun 2 & 3: Link Listeleri */
.footer-col.links ul,
.footer-col.contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.links li,
.footer-col.contact li {
    margin-bottom: 0.8rem;
}

.footer-col.links a,
.footer-col.contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col.links a:hover,
.footer-col.contact a:hover {
    color: #4b975f; /* Ana Renk */
}

/* Sütun 3: İletişim İkonları */
.footer-col.contact li {
    display: flex;
    align-items: flex-start; /* Uzun adresler için */
}

.footer-col.contact li i {
    color: #4b975f;
    font-size: 1rem;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    /* İkonların hizalı durması için sabit genişlik */
    width: 20px; 
    text-align: center;
}

/* Sütun 4: Sosyal Medya */
.footer-col.social p {
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background-color: #e6f7eb; /* Açık yeşil fon */
    color: #4b975f; /* Ana Renk */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: #4b975f; /* Ana Renk */
    color: #ffffff;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 10px rgba(75, 151, 95, 0.3);
}


/* En Alt Copyright Barı */
.footer-bottom-bar {
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e6f7eb; /* Üstteki gridden ayırıcı */
}

.footer-bottom-bar p {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}


/* --- MOBİL UYUMLULUK --- */
/* Not: auto-fit grid kullandığımız için
  sütunların kırılması için özel @media
  gerekmez. Sadece boşlukları ayarlarız.
*/
@media (max-width: 768px) {
    .site-footer {
        padding-top: 4rem;
    }
    .footer-grid {
        gap: 2rem; /* Mobilde boşluğu azalt */
    }
    .footer-col {
        /* Mobilde hepsi merkezlensin */
        text-align: center;
    }
    .footer-col.about .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col.links ul,
    .footer-col.contact ul {
        text-align: center;
    }
    .footer-col.contact li {
        justify-content: center;
        text-align: left; /* İkonlu adresin kendi iç hizası */
    }
    .footer-social-links {
        justify-content: center;
    }
}