footer {
  position: relative;
  width: 100%;
  margin-top: 6%;
  padding: 50px 0 24px 0;
  background-image: url(../assets/images/backgrounds/Background-Index-1122.jpg);
  background-size: cover;
  background-color: var(--brand);
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  box-sizing: border-box;
}

footer .background {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(82, 132, 3, 0.92) 0%, rgba(67, 108, 2, 0.96) 100%);
  z-index: 0;
}

footer > .content {
  position: relative;
  z-index: 1;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.85;
}

footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

footer .col {
  flex: 1 1 180px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .col.brand {
  flex: 1 1 220px;
}

footer .col.brand #logo {
  width: 130px;
  height: auto;
  margin-bottom: 6px;
}

footer .col.brand .company {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
}

footer .col.brand .vat {
  font-size: 13px;
  opacity: 0.8;
}

footer .col .col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: 6px;
}

footer .col a {
  font-size: 14px;
  line-height: 1.5;
}

footer .col .address {
  line-height: 1.55;
  display: inline-block;
}

footer .col .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

footer .col .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

footer .col .socials a:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
  opacity: 1;
}

footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 13px;
  opacity: 0.85;
  gap: 10px;
}

footer .footer-bottom .credit a {
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
}

footer .footer-bottom .credit a:hover {
  border-bottom-color: #fff;
  opacity: 1;
}

@media (max-width: 800px) {

  footer {
    padding: 40px 0 20px 0;
    text-align: center;
  }

  footer .footer-row {
    gap: 24px;
    text-align: center;
  }

  footer .col {
    flex: 1 1 100%;
    align-items: center;
  }

  footer .col.brand #logo {
    margin: 0 auto 8px auto;
  }

  footer .col .address {
    text-align: center;
  }

  footer .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

}
