/* ============================================
   FOOTER STİLLERİ
   Arka plan: #f2e8cf | Yazı: #3a5a40
   ============================================ */

.site-footer {
    background: #f2e8cf;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Footer Logo & Açıklama */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    display: block;
}

.footer-desc {
    color: rgba(58, 90, 64, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(58, 90, 64, 0.3);
    border-radius: 50%;
    color: rgba(58, 90, 64, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: #3a5a40;
    border-color: #3a5a40;
    color: #f2e8cf;
    transform: translateY(-3px);
}

/* Footer Başlıklar */
.footer-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #3a5a40;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3a5a40;
}

/* Footer Linkler */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(58, 90, 64, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: #3a5a40;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #3a5a40;
    font-weight: 600;
    padding-left: 4px;
}

.footer-links a:hover::before {
    width: 12px;
}

/* Footer İletişim */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: rgba(58, 90, 64, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-contact li i {
    color: #3a5a40;
    font-size: 0.85rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(58, 90, 64, 0.7);
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: #3a5a40;
    font-weight: 600;
}

/* Footer Alt Çizgi */
.footer-bottom {
    border-top: 1px solid rgba(58, 90, 64, 0.15);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(58, 90, 64, 0.55);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0;
}
