.footer {
  background: var(--navy-soft);
  color: #fff;
  padding: 64px 0 32px;
  margin-top: 80px;
  transition: background 0.3s;
}
[data-theme="dark"] .footer { background: #0A1020; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
} /* ← eklendi */

/* DOĞRU */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
} /* ← bu kapanışı ekle */

.footer-logo img { height: 120px; width: auto; opacity: 0.9; }

.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold-light); text-transform: uppercase; margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--transition); font-size: 13px; font-weight: 700;
}
.footer-socials a:hover { border-color: var(--gold-light); color: var(--gold-light); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 14px; text-align: center; } }


