.portfolio-footer-wrapper {
  background: var(--lumen-dark-teal);
}

.legal-footer-wrapper {
  background: var(--lumen-light-teal);
}

.portfolio-footer {
  /* background-color: var(--lightGray); */
  padding: 40px 0 80px;
}

.portfolio-footer .portfolio-footer-container-wrapper {
  /* max-width: 1100px; */
  margin: 0 auto;
  overflow: hidden;
  padding: 0 8.3333%;
}

/* Top Section - Logo + Search */
.footer-top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo-wrapper .media img {
  max-height: 40px;
  width: auto;
}

.footer-search-wrapper {
  margin-right: 44px;
}

.footer-search-input {
  background: rgb(0 0 0 / 0%);
  border: 1px solid #fff;
  border-radius: 0;
  display: flex;
  padding: 12px 16px;
  width: 303px;
  height: 51px;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  font-family: Gotham-Book, sans-serif;
}

.footer-search-input::placeholder {
  color: #fff;
  opacity: 1;
}

.footer-search-input:focus {
  outline: none;
}

/* Columns Section */
.footer-columns-section {
  display: flex;
  gap: 30px;
}

.footer-columns-section .footer-column ul {
  list-style-type: none;
  padding-left: 0;
}

.footer-columns-section .footer-col-1 li a,
.footer-columns-section .footer-col-2 li a {
  font-weight: var(--font-weight-book);
}

.footer-columns-section .footer-col-1 li a:hover {
  font-weight: var(--font-weight-bold);
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-columns-section .footer-col-3 li a {
  font-weight: var(--font-weight-book);
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-columns-section .footer-col-4 li a {
  font-weight: var(--font-weight-book);
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-columns-section .footer-col-3 p,
.footer-columns-section .footer-col-4 p {
  font: var(--font-16-24);
  color: var(--contrast);
  font-weight: var(--font-weight-bold);
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-columns-section .footer-column ul li {
  padding-top: 10px; 
}

.footer-columns-section .footer-column ul li:first-child {
  padding-top: 0;
}

.footer-columns-section .footer-column ul li:last-child {
  padding-bottom: 40px;
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-column p,
/* stylelint-disable-next-line no-descending-specificity */
.footer-column ul li,
/* stylelint-disable-next-line no-descending-specificity */
.footer-notice-wrapper p {
  font: var(--font-16-24);
  color: var(--white);
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-column p {
  padding-bottom: 10px;
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-column ul li a {
  color: var(--white);
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-column ul li a:hover {
  color: var(--white);
}

.footer-column {
  flex: 1;
}

/* Social Links */
.social-links-wrapper {
  margin-top: 20px;
}

/* stylelint-disable-next-line no-descending-specificity */
.social-links-wrapper a {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
}

/* stylelint-disable-next-line no-descending-specificity */
.social-links-wrapper a:hover {
  scale: 1.1;
}

.social-links-wrapper .media img {
  width: 35px;
  height: 35px;
  transition: opacity 0.3s ease;
}

.social-links-wrapper a:hover .media img {
  opacity: 0.8;
}

/* Notice */
.footer-notice-wrapper {
  text-align: center;
  padding-top: 40px;
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-notice-wrapper a {
  color: var(--contrast);
}

/* Tablet Styles (768px - 1199px) */
@media (width >= 768px) and (width <= 1199px) {
  .portfolio-footer-container-wrapper {
    /* max-width: 682px !important; */
    overflow: hidden;
  }

  .footer-search-wrapper {
    margin-right: 0;
  }

  .footer-logo-wrapper, .footer-search-wrapper {
    width: 50%;
  }

  .footer-search-input {
    width: 100%;
  }

  .social-links-wrapper {
    margin-top: 0;
  }

  .footer-columns-section {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-column {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Mobile Styles (up to 767px) */
@media (width <= 767px) {
  .portfolio-footer-container-wrapper {
    /* max-width: 360px !important; */
    overflow: hidden;
  }

  .footer-search-wrapper {
    margin-right: 0;
    width: 100%;
  }

  .footer-top-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .footer-search-input {
    width: 100%;
    box-sizing: border-box;
  }

  .footer-columns-section {
    flex-direction: column;
    gap: 20px;
  }

  .social-links-wrapper {
    text-align: left;
    margin-top: 0;
  }

  .portfolio-footer {
    padding-bottom: 40px
  }
}

/* Autocomplete Suggestions */
/* stylelint-disable-next-line no-duplicate-selectors */
.footer-search-wrapper {
  position: relative;
}

.footer-autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #fff;
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: -1px;
}

.footer-autocomplete-item {
  padding: 12px 16px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-family: Gotham-Book, sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgb(216 214 212);
}

.footer-autocomplete-item:hover,
.footer-autocomplete-item.hover {
  background-color: rgb(0 0 0 / 10%);
}

.footer-autocomplete-item:last-child {
  border-bottom: none;
}