/* footer.css — Footer */

footer {
    position: relative; z-index: 1;
    background: rgba(5,5,20,0.88);
    border-top: 1px solid rgba(0,245,255,0.12);
    padding: 4rem 1.5rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
    font-size: 0.875rem; color: var(--text-dim);
    line-height: 1.7; margin: 0.9rem 0 1.4rem; max-width: 290px;
}
.footer-socials { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.footer-social-btn {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.25);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 0.95rem; transition: var(--transition);
}
.footer-social-btn:hover {
    background: rgba(124,58,237,0.2);
    border-color: var(--brand-purple);
    color: #c4b5fd;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(124,58,237,0.3);
}
.footer-col h4 {
    font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.88); margin-bottom: 1.2rem;
    padding-bottom: 0.65rem; position: relative;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 2rem; height: 2px;
    background: var(--brand-purple);
    border-radius: 2px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
    color: var(--text-dim); text-decoration: none;
    font-size: 0.875rem; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-col a:hover { color: #c4b5fd; padding-left: 0.35rem; }
.footer-status {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.35rem 0.875rem;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: 30px; font-size: 0.72rem; font-weight: 700;
    color: #4ade80; margin-top: 1rem;
}
.footer-status-dot {
    width: 6px; height: 6px; background: #4ade80;
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
    50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-bottom-links a {
    font-size: 0.78rem; color: var(--text-dim);
    text-decoration: none; transition: color 0.3s;
}
.footer-bottom-links a:hover { color: #c4b5fd; }

/* Sade footer (hata ve uygulama politika sayfaları) */
footer.footer-simple {
    background: rgba(10,14,26,0.9);
    border-top: 1px solid rgba(0,245,255,0.1);
    padding: 1.25rem 2rem;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
footer.footer-simple p { font-size: 0.78rem; color: var(--text-dim); }
footer.footer-simple a { color: var(--brand-cyan); text-decoration: none; }
footer.footer-simple a:hover { opacity: 0.75; }
