/* MODERN FOOTER TASARIMI */
.main-footer {
    background-color: #111; /* Koyu siyah/gri tonu */
    color: #fff;
    padding: 60px 0 0 0;
    margin-top: auto;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #e5aa16; /* Sitedeki sarı çizgi renginle uyumlu */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 40px 20px;
}

.footer-section h4 {
    color: #e5aa16; /* Başlık rengi */
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-logo {
    height: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Logoyu beyaza çevirmek istersen kullan */
}

.footer-section p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #e5aa16;
    padding-left: 5px;
}

/* En Alt Bant */
.footer-bottom {
    background-color: #000;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

/* Mobilde Düzenleme */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}