.site-footer {
  position: relative;
  background: transparent;
  color: #555;
  font-size: 13px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  margin-top: 15px;
  border-top: none !important;
  font-family: 'Poppins', sans-serif;
  left: 230px;
  width: calc(100% - 230px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,
      #e8f5f4 0%,
      #b0ddd8 50%,
      #e8f5f4 100%);
}

.footer-mail {
  color: #1ab394;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  position: relative;
}

.footer-mail:hover {
  color: #148f77;
  text-shadow: 0 0 6px rgba(26, 179, 148, 0.4);
}

.footer-mail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #1ab394, #16a085);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-mail:hover::after {
  width: 100%;
}

.footer-right i.fa-envelope {
  color: #1ab394;
  font-size: 14px;
  transition: transform 0.4s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.footer-right i.fa-envelope:hover {
  transform: rotate(360deg) scale(1.15);
  color: #148f77;
  text-shadow: 0 0 8px rgba(26, 179, 148, 0.4);
}

.sidebar.collapsed~.site-footer {
  left: 0;
  width: 100%;
}

.site-footer strong {
  color: #1ab394;
  font-weight: 600;
  transition: 0.3s;
}

.site-footer strong:hover {
  color: #148f77;
  text-shadow: 0 0 3px rgba(26, 179, 148, 0.3);
}

.footer-right {
  color: #777;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 992px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.05);
  }

  .site-footer::before {
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #e8f5f4, #b0ddd8, #e8f5f4);
  }

  .footer-mail,
  .footer-right i.fa-envelope {
    color: #1ab394 !important;
  }

  .footer-mail:hover {
    color: #148f77 !important;
  }
}
