/* FOOTER */
.footer{
  padding:26px 0 14px;
  border-top:1px solid var(--line);
}

/* LAYOUT */
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

/* LEFT SIDE */
.footer-left{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-brand{
  font-size:14px;
}

.footer-company{
  display:flex;
  flex-direction:column;
  gap:2px;
  font-size:12px;
  color:var(--muted2);
  font-weight:300;
  letter-spacing:0.3px;
  
}

/* CENTER - ANPC */
.footer-anpc{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:1px;
  flex:1;
}

.footer-anpc-icons{
  display:flex;
  gap:28px; /* sau 30px dacă vrei mai airy */
}

.footer-anpc img{
  height:34px;
  
  transition:all .3s ease;
}

.footer-anpc img:hover{
 
  transform:scale(1.05);
}

/* LINK POLITICA */
.footer-policy{
  font-size:12px;
  color:var(--muted2);
  text-decoration:none;
  transition:color .2s ease;
  letter-spacing:0.3px;
}

.footer-policy:hover{
  color:var(--text);
  transform:scale(1.05);
}


/* RIGHT SIDE - SOCIALS (exact stilul tău) */
.footer-socials{
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight:300;
}

.footer-socials a{
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-socials a:hover{
  color: var(--text);
}

/* RESPONSIVE */
@media (max-width: 768px){
  .footer-inner{
    flex-direction:column;
    text-align:center;
    gap:16px;
  }

  .footer-anpc{
    order:2;
  }

  .footer-socials{
    order:3;
  }
}