/* FOOTER — TÜM SAYFALAR İÇİN TEK KAYNAK */
.footer {
    padding: 24px 40px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #D4A017;
}

.footer-copy {
    font-size: 11px;
    color: #777;
}

@media (max-width: 768px) {
    .footer { padding: 16px; }
    .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
    .footer-links { gap: 16px; justify-content: center; }
    .footer-copy { font-size: 10px; }
}
