/* =========================
   FOOTER - KarotPlus
   ========================= */

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px 20px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5px;
}

/* Logo ve Slogan */
.footer-brand {
    flex: 1 1 200px;
    text-align: left;
}
.footer-logo {
    width: 70px;
    margin-bottom: 10px;
}
.footer-slogan {
    font-size: 0.95rem;
    color: #f0a500;
}

/* Hızlı Linkler */
.footer-links-section {
    flex: 1 1 200px;
}
.footer-links-section h5 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #4da6ff; /* Açık mavi, belirgin */
}
.footer-links-section ul {
    list-style: none;
    padding: 0;
}
.footer-links-section ul li {
    margin-bottom: 10px;
}
.footer-links-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links-section ul li a:hover {
    color: #4da6ff; /* Hover rengi başlıkla uyumlu */
}

/* Çalışma Saatleri */
.footer-hours {
    flex: 1 1 200px;
}
.footer-hours h5 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #4da6ff; /* Başlık rengi tutarlı */
}
.footer-hours ul {
    list-style: none;
    padding: 0;
}
.footer-hours ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* İletişim & Sosyal Medya */
.footer-contact {
    flex: 1 1 200px;
}
.footer-contact h5 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #4da6ff; /* Başlık rengi tutarlı */
}
.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.footer-social {
    margin-top: 10px;
}
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: #4da6ff;
}

/* Footer Alt Kısım */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand{
     text-align: center; 
    }
    .footer-logo {
        margin-left: auto;
        margin-right: auto; /* Görselin ortalanması */
        display: block;
    } 
    .footer-links-section, 
    .footer-contact,
    .footer-hours {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    .footer-social a { 
        margin-right: 15px; 
    }
}
