/* Destination : assets/css/footer.css */

.nh-footer { background: var(--nh-dark); color: var(--nh-grey-300); }

.nh-footer-top { padding: 4.5rem 0 3rem; }

.nh-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.nh-footer-brand .nh-brand-name { color: var(--nh-white); font-size: 1.25rem; font-weight: 900; }
.nh-footer-brand .nh-brand-accent { color: var(--nh-rose); }

.nh-footer-about { font-size: 0.92rem; color: var(--nh-grey-300); max-width: 380px; }

.nh-footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.nh-footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--nh-white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--nh-transition);
}
.nh-footer-social a:hover { background: var(--nh-gradient-primary); transform: translateY(-4px); color: var(--nh-white); }

.nh-footer-title {
  color: var(--nh-white);
  font-weight: 700;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.nh-footer-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  border-radius: 3px;
  background: var(--nh-gradient-primary);
}

.nh-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.nh-footer-links a { color: var(--nh-grey-300); font-size: 0.92rem; }
.nh-footer-links a:hover { color: var(--nh-rose); padding-left: 4px; }

.nh-footer-contact { list-style: none; padding: 0; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: 0.8rem; }
.nh-footer-contact li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; }
.nh-footer-contact i { color: var(--nh-rose); margin-top: 3px; }
.nh-footer-contact a { color: var(--nh-grey-300); }
.nh-footer-contact a:hover { color: var(--nh-rose); }

.nh-newsletter-label { display: block; font-size: 0.85rem; color: var(--nh-white); font-weight: 600; margin-bottom: 0.6rem; }
.nh-newsletter-input-group { display: flex; border-radius: 50px; overflow: hidden; background: rgba(255,255,255,0.08); }
.nh-newsletter-input-group input {
  flex: 1; border: none; background: transparent; color: var(--nh-white);
  padding: 0.75rem 1.1rem; font-size: 0.88rem;
}
.nh-newsletter-input-group input::placeholder { color: var(--nh-grey-300); }
.nh-newsletter-input-group input:focus { outline: none; }
.nh-newsletter-input-group button {
  border: none; background: var(--nh-gradient-primary); color: var(--nh-white);
  width: 46px; flex-shrink: 0; transition: var(--nh-transition);
}
.nh-newsletter-input-group button:hover { filter: brightness(1.08); }

.nh-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.4rem 0; }
.nh-footer-bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.nh-footer-copy { font-size: 0.8rem; color: var(--nh-grey-300); margin: 0; }
.nh-footer-legal { list-style: none; display: flex; gap: 1.4rem; margin: 0; padding: 0; }
.nh-footer-legal a { font-size: 0.8rem; color: var(--nh-grey-300); }
.nh-footer-legal a:hover { color: var(--nh-rose); }

@media (max-width: 767.98px) {
  .nh-footer-top { padding: 3rem 0 2rem; }
  .nh-footer-bottom-inner { flex-direction: column; text-align: center; }
}