/* ================================
   FOOTER
================================ */
.footerformat {
  background: linear-gradient(to bottom, #1b361b 0%, #0f220f 100%);
  color: rgba(220, 240, 220, 0.9);
  padding: 3.5rem 2rem 2.5rem;
  margin-top: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  color: rgba(220, 240, 220, 0.85);
}

.social-link:hover {
  background: rgba(212, 165, 116, 0.2);
  border-color: rgba(212, 165, 116, 0.4);
  transform: translateY(-3px);
  color: #d4a574;
}

.social-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #345635, #d4a574);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.micheal {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(200, 225, 200, 0.65);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .footerformat {
    padding: 3rem 1.5rem 2rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .social-icon {
    width: 19px;
    height: 19px;
  }

  .micheal {
    font-size: 0.75rem;
  }
}
