/* --- Genel Footer Stilleri --- */
footer {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    overflow: hidden; /* Kenarlardan taşmaları önler */
}

/* --- Üst Siyah Alan (İsteğiniz üzerine korundu) --- */
.footer-top-black {
    background-color: #1e453e;
    color: white;
    text-align: center;
    padding: 60px 20px 50px 20px;
    position: relative;
    z-index: 10;
}
.footer-top-black h2 {
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 30px;
}
.footer-top-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-btn {
    background-color: #fff;
    color: #2e8b57;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.footer-btn .arrow {
    transition: transform 0.3s ease;
}
.footer-btn:hover {
    background-color: #f1f1f1;
}
.footer-btn:hover .arrow {
    transform: translateX(5px);
}

/* --- Koç'tan Esinlenen Ana Beyaz Alan --- */
.footer-white-area {
    background-color: #ffffff;
    padding: 80px 0 40px 0;
    position: relative;
}

/* Arka plan logosunu konumlandırmak için stil */
.footer-bg-image {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: auto;
    opacity: 0.15;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* İçeriğin logonun üzerinde kalması için */
    z-index: 1;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end; /* İçeriği sağa yaslar, logo için yer bırakır */
    gap: 40px;
    padding-bottom: 40px;
    position: relative; /* Çizgi için eklendi */
    /* border-bottom kaldırıldı, aşağıdaki ::after kuralıyla değiştirildi */
}

/* Navigasyon üstündeki ince ayırıcı çizgi (Yeni Stil) */
.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%; /* Sayfanın sağdan 3/4'ü kadar */
    height: 1px;
    background-color: #e0e0e0;
}

.footer-column {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

/* Başlıklar için istediğiniz orijinal stil */
.footer-title {
    font-size: 2.2rem;
    color: var(--impt-clr); /* Orijinal renk değişkeniniz */
    font-weight: 700; /* Kalınlaştırıldı */
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

/* --- Sosyal Medya İkonları --- */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}
.social-icons a img {
    width: 32px; /* Küçültüldü */
    height: 32px; /* Küçültüldü */
    object-fit: contain;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}
.social-icons a:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- İletişim Bilgileri --- */
.footer-address-info .company-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.address-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.address-content .icon {
    width: 22px;
    height: 22px;
    margin-top: 3px;
    opacity: 0.7;
    object-fit: contain;
}
.address-content .desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

/* --- Alt Navigasyon Linkleri --- */
.footer-bottom-nav {
    padding-top: 20px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px 25px;
}
.nav-item .nav-link {
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-item .nav-link:hover {
    color: #1e453e;
    text-decoration: none; /* Üzerine gelince çıkan alt çizgi kaldırıldı */
}

/* --- En Alt Renkli Şerit (Eski Haline Döndü) --- */
.footer-bottom-line {
    height: 12px;
    background-color: #1e453e; /* Ana marka renginiz */
    margin-top: 30px; /* Üstündeki yazılarla mesafesi artırıldı */
}

/* --- Mobil Uyum (Responsive Tasarım) --- */
@media (max-width: 992px) {
    .footer-white-area {
        padding-top: 40px;
    }
    .footer-bg-image {
        /* Mobilde logoyu gizleyerek içeriğe odaklanalım */
        display: none;
    }
    .footer-main {
        justify-content: center;
        text-align: center;
    }
    /* Mobilde çizginin tam genişlikte olmasını sağlayalım */
    .footer-main::after {
        width: 100%;
    }
    .social-icons, .address-content {
        justify-content: center;
    }
    .address-content {
        text-align: left; /* Adres ortada bile olsa sola dayalı kalsın */
    }
}
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .footer-top-black h2 {
        font-size: 1.5rem;
    }
}

