.footer {
  width: 100%;
  background-color: var(--al-yellow);
  color: var(--al-black);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
    padding: 24px 0;

}

/* ── NAVIGATION ── */
.footer-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
}

.footer-links li a {
  text-decoration: none;
  color: var(--al-black);
  font-family: var(--font-medium);
  font-size: var(--font-size-small);
  line-height: var(--line-height-small);
  border-bottom: 1px solid transparent;
  transition: border-color 1s ease;
  white-space: nowrap;
  /* padding-bottom: 2px; */
}

.footer-links li a:hover {
  border-color: var(--al-black);
}

/* ── BOTTOM WRAPPER (Socials + Copyright) ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 80px;
}

/* ── SOCIALS ── */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 48px;
}
.footer-links li + .footer-links::before {
  content: '•';
  display: inline-block;
  margin-right: 24px;
  color: var(--al-black);
 
}
.footer-links li + li::before {
  content: '•';
  display: inline-block;
  margin-right: 24px;
  color: var(--al-black);
 font-size: var(--font-size-small);
  line-height: var(--line-height-small);
  font-family: var(--font-heading-medium);
}

.social-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: translateY(-2px);
}

/* ── COPYRIGHT ── */
.footer-copyright {
  font-family: var(--font-heading-semi-bold);
  font-size: 16px;
  white-space: nowrap;
}

.copyright-symbol {
  color: var(--al-red);
}

.elementor-widget-ae-footer {
    width: 100%;
}

.elementor-widget-ae-footer,
.elementor-widget-ae-footer .elementor-widget-container,
.elementor-widget-ae-footer .footer {
    padding: 0 !important;
    margin: 0 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0px;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  /* .footer {
    padding: 40px 0;
  } */

  .footer-nav {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0px;
  }

  .footer-links {
    width: 100%;
    /* justify-content: space-between; */
    gap: 8.25px;
  }
  .footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-links li + li::before {
  margin-right: 8.25px;
 
}
.footer-links li a{
  font-family: var(--font-medium);
  font-size: 13px;
  line-height: 20px;
}

  .footer-bottom {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}