.footer {
  background: url("/public/footer.png") no-repeat center center/cover;
  color: #ffffff;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5);  */

  background-color: rgba(0, 90, 45, 0.845);
  z-index: 1;
}

.footer-container {
  position: relative;
  display: grid;
  gap: 2.5rem;
  text-align: center;
  padding: 3.2rem 1rem;
  z-index: 2;
}

.footer-brand p {
  margin-top: 0.8rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand img {
  width: 200px;
}

.footer-social-icons {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.footer-social-icons .fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  border: 1.5px dotted #49a760;

  transition: transform 0.5s ease;
}

.footer-social-icons .fab:hover {
  transform: translateY(-7px);
  background-color: transparent;
}

.footer-social-icons a {
  color: var(--text-white-color);
  font-size: 1.3rem;
  transition: color 0.3s;
}

.footer-social-icons a:hover {
  color: var(--accent-color);
}

/* Links */
.footer-explore h3,
.footer-contact h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.footer-explore ul {
  list-style: none;
  padding: 0;
}

.footer-explore li {
  margin-top: 1.7rem;
}

.footer-explore a {
  color: var(--text-white-color);
  font-size: 1.1rem;
}
.footer-explore a:hover {
  color: rgba(255, 255, 255, 0.778);
}
/* Contact Info */
.footer-contact p {
  font-size: 1rem;
  margin: 1.3rem 0;
}

.address-header {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffca28;
  font-size: 1.2rem;
}

.footer-contact .contact-desc {
  font-style: normal;
}

.footer-contact a {
  color: var(--text-white-color);
}
/* Footer Bottom */
.footer-bottom p {
  position: relative;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: var(--text-white-color);
  z-index: 2;

  background-color: #1a4133a4;
}

/* Tablet and Desktop View */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }

  .footer-brand {
    align-items: start;
  }

  .footer-brand p {
    font-size: 1rem;
  }

  .footer-social-icons {
    justify-content: start;
    margin-top: 2.5rem;
  }

  .footer-contact i {
    margin-right: 14px;
    color: var(--text-white-color);
    font-size: 1.3rem;
    transition: 1s ease;
  }

  .footer-contact i:hover {
    color: var(--accent-color);
  }

  .footer-contact .contact-desc {
    margin-left: 2.2rem;
  }

  /* Footer Line */
  .footer-line {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-line span {
    border-left: 3.5px solid #d9d9d96e;
    height: 14rem;
    border-radius: 15px;
  }
}
