/* footer-custom.css - Dark Premium & Glassmorphism Uyumlu Tasarım */

.custom-footer {
    background-color: #0f172a !important; /* Dark Slate / Navy zemin */
    color: #94a3b8 !important; /* Gümüş / Gri metinler */
    padding: 60px 0 0 0;
    position: relative;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer'ın üst kısmında çok ince ve şık neon çizgi efekti */
.custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #05a0d4 50%, transparent 100%);
    opacity: 0.7;
}

.footer-title {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 3px;
    background-color: #05a0d4;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(5, 160, 212, 0.6);
}

/* ====================================================
   LİNKLER İÇİN GRID SİSTEMİ (PC'de 2 Sütun)
   ==================================================== */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px; 
}

.footer-links-grid li {
    margin-bottom: 0 !important;
}

.footer-links a {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.75rem;
    color: #05a0d4;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(6px);
}

.footer-links a:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 5px rgba(5, 160, 212, 0.8);
}

/* İletişim Elemanları */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(4px);
}

.footer-contact-item i {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #05a0d4;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    background: rgba(5, 160, 212, 0.15);
    border-color: rgba(5, 160, 212, 0.4);
    box-shadow: 0 0 10px rgba(5, 160, 212, 0.3);
}

.footer-contact-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.footer-contact-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #f8fafc;
    font-weight: 500;
}

/* Sosyal Medya */
.footer-social-circle {
    display: flex;
    gap: 10px;
}

.footer-social-circle a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-circle a:hover {
    background: #05a0d4;
    color: #ffffff;
    border-color: #05a0d4;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(5, 160, 212, 0.4);
}

/* Harita (Map) */
.footer-map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #1e293b;
}

.footer-map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* Alt Kısım (Copyright) */
.footer-bottom {
    background-color: #0b1120; /* Ana zeminden biraz daha koyu */
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ====================================================
   TABLET VE MOBİL UYUM
   ==================================================== */
@media (max-width: 991px) {
    .custom-footer {
        padding-top: 40px;
        text-align: left !important; 
    }

    .footer-title {
        margin-bottom: 20px;
    }

    .footer-title::after {
        left: 0;
        transform: none;
    }

    /* MOBİL İÇİN 2 VEYA 3 SÜTUNLU LİNK SİSTEMİ */
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px !important; 
    }

    .footer-links a {
        font-size: 0.95rem; 
    }

    .footer-contact-item {
        margin-bottom: 15px;
    }

    .footer-contact-item i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 12px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 15px 0;
    }
}

/* Ekstra Dar Ekranlar */
@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .footer-social-circle a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
