/* Footer css */
.footer-wrapper {
    background: url('../../images/Footer/FooterBg.gif');
    padding-top: 30px;
    margin-top: 71px;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-light);
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 36px 0px;
  margin: 0;

}

.social-icons li {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  list-style: none;
}

.social-icons li:hover {
  filter: brightness(1.2);
}

/* ---------- Shared Icon Styling ---------- */
.social-icons li a {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.social-icons li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

/* ---------- Instagram Hover Dual-Image Transition ---------- */
.social-icons li a .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.9);
}

.social-icons li:hover a .img-default {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(2px);
}

.social-icons li:hover a .img-hover {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* ---------- Optional: Fine-tune Hover Dynamics ---------- */
.social-icons li a:hover {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.15));
}


.subscribe-box {
    display: flex;
    align-items: center;
    border: 2px solid #1A1A1A; /* blue border */
    border-radius: 10px;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
    background-color: transparent;
    padding: 0 10px;
}
.subscribe-input {
  flex: 1;
  padding: 12px 16px 12px 0;
  border: none;
  outline: none;
  color: #fff;
  background-color: transparent;
}

.subscribe-input::placeholder {
  color: #ccc;
}

.subscribe-btn {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.subscribe-btn span {
  transition: transform 0.3s ease;
}
.subscribe-btn:hover {
    padding: 7px 0;
}
.subscribe-btn:hover span {
  transform: rotate(-32deg);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-col.location .address {
    line-height: 30px;
}
.footer-container h5{
    padding:20px 0px;
    font-family: var(--font-body);
    font-weight: 700;
}
.logo-outer{
    padding-bottom: 20px;
}
.logo-outer .footer-logo {
    width: 200px;
    height: auto;
}

.footer-col p,
.footer-col li,
.privacy-note {
  line-height: 1.4;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
    margin-bottom: 20px;
}
.footer-col ul li a {
    display: inline-block;
    transition: all 0.3s ease;
}
.footer-col ul li:hover a {
    transform: translateX(3px);
    text-decoration: underline;
}
.footer-col p {
    margin: 0;
}
.footer-col a{
 text-decoration:none;
 color: var(--color-light);
}
.footer-col a:hover{
 text-decoration:none;
}
.newsletter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 20px 0;
}

.footer-bottom-outer {
    border-top: 1px solid #1A1A1A;
}
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-bottom p {
    margin: 0;
}
@media (max-width: 768px) {
  .footer-wrapper {
    padding-top: 60px;
    border-radius: 0;
  }
  .newsletter {
    gap: 10px;
  }

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

  .footer-col {
    max-width: 100%;
    min-width: 100%;
  }

  .footer-col p,
  .footer-col li{
    letter-spacing: 1px;
  }

  .social-icons li img {
    width:24px; 
    height:24px; 
    object-fit:contain;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 5px;
  }
}
@media (min-width: 769px) {
  .footer-col.social-links {
    max-width: 246px;
  }
  .footer-col.location {
      max-width: 382px;
  }
  .footer-col {
    max-width: 45%;
  }
}
@media (min-width: 1024px) {
  .footer-col.social-links {
    max-width: 246px;
  }
  .footer-col.location {
      max-width: 382px;
  }
  .footer-col {
    max-width: 100%;
  }
}