/* includes/css/footer.css */

.main-footer {
    background: #1a1a1a; /* Daha derin ve modern bir siyah */
    color: #ffffff;
    padding: 60px 0 30px 0;
    margin-top: 80px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.main-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

/* Başlığın altına ince modern bir çizgi */
.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent, #e44d26);
    margin-top: 8px;
}

.footer-col p {
    color: #888;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent, #e44d26);
    transform: translateX(5px); /* Hafif sağa kayma efekti */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #555;
    letter-spacing: 0.5px;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px 0;
        text-align: center;
    }

    .footer-col h4::after {
        margin: 8px auto 0 auto; /* Çizgiyi ortala */
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-col ul li a:hover {
        transform: none; /* Mobilde kayma efekti olmasın */
    }
}