/* Bloc meniu footer – pe o singură coloană */
.footer-menu-utile {
  display: flex;
  flex-direction: column;
}

/* Titlul coloanei */
.footer-menu-utile h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  position: relative;
  padding-bottom: 0.35rem;
}

/* Linia sub titlu */
.footer-menu-utile h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #27e0ff;          /* schimbă cu accentul tău */
}

/* Lista de linkuri – coloană */
.footer-menu-utile .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Linkurile din meniu */
.footer-menu-utile .footer-links a {
  display: flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);   /* se vede bine pe fundal închis */
  padding: 0.1rem 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Săgeata din fața fiecărui link */
.footer-menu-utile .footer-links a::before {
  content: "→";
  margin-right: 0.5rem;
  font-size: 14px;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hover elegant */
.footer-menu-utile .footer-links a:hover {
  color: #27e0ff;                 /* accent la hover */
  transform: translateX(4px);
}

.footer-menu-utile .footer-links a:hover::before {
  transform: translateX(2px);
  opacity: 1;
}