/* Keyframes za animaciju od dole prema gore */
@keyframes slideUp {
  from {
    transform: translateY(70px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animacija za contact-grid */
.contact-grid {
  opacity: 0;
  transform: translateY(70px); /* Početna pozicija izvan viewporta */
}

/* Kada je vidljivo, animiraj od dole prema gore */
.contact-grid.visible {
  animation: slideUp 1.2s ease forwards;
}
