/* WRAPPER */
.footer-wrapper {
  position: relative;
}

/* 🔥 LOGO (PERFECT CENTER LOCK) */
.footer-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%); /* 🔥 MAGIC */

  z-index: 9999;
}

.footer-logo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;

  object-fit: cover;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer {
  position: relative;
  padding-top: 70px;

  color: white;
  overflow: hidden;
}

/* BACKGROUND */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 80, 40, 0.85);
  z-index: 1;
}

/* CONTENT */
.footer-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* TEXT */
.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col i {
  color: #ff6e00;
  margin-right: 8px;
}

/* NEWS */
.news-item {
  display: flex;
  gap: 10px;
}

.news-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* BOTTOM */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

/* SOCIALS */
.socials i {
  color: white;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
}

.socials i:hover {
  color: #ff6e00;
  transform: scale(1.2);
}

/* SCROLL BUTTON */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: #ff6e00;
  color: white;

  border: none;
  padding: 12px;
  border-radius: 6px;

  cursor: pointer;
  display: none;
  z-index: 999;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
