
/* ─── MOBILE NAV ─── */
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: all 0.3s;
}
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,0.98); backdrop-filter: blur(12px);
  padding: 24px 5% 32px; z-index: 99;
  border-bottom: 1px solid rgba(74,158,221,0.15);
  animation: slideDown 0.2s ease;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-nav ul li a {
  display: block; padding: 14px 0;
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.04em; transition: color 0.2s;
}
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-cta { color: var(--gold) !important; font-weight: 500 !important; }
.mobile-lang {
  display: flex; gap: 0; margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 2px;
  overflow: hidden; width: fit-content;
}

/* ─── FOOTER CONTACT ─── */
.footer-contact {
  display: flex; flex-direction: column; gap: 6px; margin-top: 16px;
}
.footer-contact a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.85rem; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links, .lang-switcher { display: none !important; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}
