/* Footer NETA-NKÁB - Moderne & Responsive */
.nk-footer {
  width: 100vw;
  min-width: 100vw;
  left: 0;
  position: relative;
  margin: 0;
  box-sizing: border-box;
  background: #1a2236;
  color: #fff;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  padding: 0;
  box-shadow: 0 -2px 16px #0002;
}
.nk-footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
  gap: 32px;
}
.nk-footer-about, .nk-footer-links, .nk-footer-contact {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 18px;
}
.nk-footer-logo {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ff9800;
  margin-bottom: 0.7em;
  letter-spacing: 1px;
}
.nk-footer-desc {
  font-size: 1.08em;
  color: #e0e0e0;
  margin-bottom: 0.8em;
  line-height: 1.6;
}
.nk-footer-links h3, .nk-footer-contact h3 {
  font-size: 1.18rem;
  margin-bottom: 0.7em;
  color: #ff9800;
  font-weight: 700;
}
.nk-footer-links ul, .nk-footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7em 0;
}
.nk-footer-links ul li, .nk-footer-contact ul li {
  margin-bottom: 0.5em;
  font-size: 1em;
}
.nk-footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.nk-footer-links a:hover {
  color: #ff9800;
  text-decoration: underline;
}
.nk-footer-contact a,
.nk-footer-contact a[href^="mailto:"],
.nk-footer-contact a[href^="tel:"] {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.nk-footer-contact a:hover,
.nk-footer-contact a[href^="mailto:"]:hover,
.nk-footer-contact a[href^="tel:"]:hover {
  color: #ff9800 !important;
}
.nk-footer-contact i {
  color: #ff9800;
  margin-right: 8px;
  font-size: 1.1em;
}
.nk-footer-socials {
  margin-top: 1.1em;
  display: flex;
  gap: 18px;
}
.nk-footer-socials a {
  color: #fff;
  font-size: 1.35em;
  transition: color 0.2s, transform 0.2s;
}
.nk-footer-socials a:hover {
  color: #ff9800;
  transform: scale(1.18);
}
.nk-footer-bottom {
  border-top: 1px solid #2c3146;
  text-align: center;
  padding: 18px 10px 10px 10px;
  font-size: 1em;
  color: #b0b0b0;
  background: #181d2b;
}
@media (max-width: 900px) {
  .nk-footer-main {
    flex-direction: column;
    align-items: center;
    padding: 36px 8vw 18px 8vw;
    gap: 18px;
  }
  .nk-footer-about, .nk-footer-links, .nk-footer-contact {
    max-width: 98vw;
    min-width: 0;
    text-align: center;
  }
  .nk-footer-socials {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .nk-footer-main {
    padding: 28px 2vw 12px 2vw;
  }
  .nk-footer-logo {
    font-size: 1.4rem;
  }
  .nk-footer-desc {
    font-size: 0.98em;
  }
  .nk-footer-bottom {
    font-size: 0.95em;
  }
} 