/* Footer Styling */
.site-footer {
    background: linear-gradient(180deg, #020510 0%, #06112a 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    z-index: 10;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), transparent);
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-brand {
    font-size: 1.8rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.footer-brand img {
    height: 45px;
}
.footer-brand .logo-text {
    color: #fff;
}
.footer-brand .logo-text span {
    color: #00a8ff;
}
.footer-title {
    color: #00a8ff;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.footer-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-list a:hover {
    color: #00a8ff;
}
.footer-icon {
    font-size: 1.1rem;
    min-width: 20px;
    opacity: 0.8;
}
.footer-bottom {
    background: #02050f;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
}

/* Social Icons in Footer */
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: fill 0.3s ease;
}
.social-icon:hover {
    background: #00a8ff;
    color: #fff;
    border-color: #00a8ff;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .footer-col {
        min-width: 100%;
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-list li {
        justify-content: center;
        text-align: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
    .footer-bottom p {
        position: relative;
        padding-bottom: 0; 
    }
    /* Reklam iconu inline absolute style ezici */
    .footer-bottom .container > div[style*="position: absolute"] {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        margin: 10px 0 !important;
    }
    .admin-panel-btn {
        display: none !important;
    }
}
