/* ============ FOOTER ============ */
footer {
  width: 100%;
  background-color: var(--yellow);
  padding: 2% 10%;
  padding-bottom: 3%;
  box-sizing: border-box;
  font-family: var(--text);
  color: var(--black);
}

.footer-logos-row {
  display: flex;
  width: 60%;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 10px;
}

.footer-logo {
  max-height: 40px; 
  width: auto;
  margin: 0 5px;
}

.footer-content {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-left p {
  font-size: 24px;
  font-weight: bold;
}

.footer-left .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-left .footer-nav ul li { margin-bottom: 12px; }
.footer-left .footer-nav ul li a {
  color: var(--black);
  text-decoration: none;
}
.footer-left .footer-nav ul li a:hover {
  color: var(--blue);
  font-weight: bold;
}

.footer-right address {
  font-style: normal;
  line-height: 1.5;
}

.footer-logo-main {
  max-height: 90px;
  margin-bottom: 15px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  color: var(--black);
  font-size: 32px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer-socials a:hover {
  color: var(--blue);
  transform: scale(1.1);
}