.site-footer {
  background-color: #f2f6fe;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

/* Logo pe fundal, centrat, cu opacitate redusă */
.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  background: url('/logo-servicii.webp') no-repeat center center/contain;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 260px;
}

.footer-logo {
  height: 90px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-column h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-info li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.footer-phone-btn {
  display: inline-block;
  margin-top: 16px;
  background-color: #620000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.footer-phone-btn:hover {
  background-color: #0041cc;
}

.footer-anpc {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-anpc img {
  height: 38px;
  object-fit: contain;
  border-radius: 4px;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: #620000;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 32px;
  }

  .footer-column {
    max-width: 100%;
    padding: 0 10px;
  }

  .footer-column h4 {
    font-size: 17px; /* ⬆️ mai mare */
    margin-bottom: 12px;
  }

  .footer-info li,
  .footer-links li a {
    font-size: 15px; /* ⬆️ de la 14px */
    line-height: 1.7;
  }

  .footer-links li a {
    margin-bottom: 10px;
  }

  .footer-phone-btn {
    display: inline-block;
    margin: 16px auto 0;
    font-size: 16px; /* ⬆️ buton vizibil */
    padding: 12px 20px;
    border-radius: 8px;
    max-width: 260px;
    width: 100%;
  }

  .footer-anpc {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-anpc img {
    height: 38px;
    max-width: 130px;
  }

  .footer-bottom {
    font-size: 15px; /* ⬆️ mai lizibil */
    padding: 0 12px;
    line-height: 1.6;
  }

  .site-footer::before {
    width: 180px;
    height: 180px;
    top: 70%;
  }
}
