.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-nav a {
  background-color: #f3f5f7;
  color: #ff6b3d;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.footer-nav a:hover {
  background-color: #ff6b3d;
  color: #ffffff;
}
.footer-cta {
  background-color: #00b4d8 !important;
  color: #ffffff !important;
  font-weight: 600;
}

.footer-cta:hover {
  background-color: #0096c7 !important;
}

.footer-social-wrapper {
  display: flex;
  justify-content: center;   /* CENTER horizontally */
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

/* icon buttons */
.footer-social-wrapper a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f3f5f7;
  color: #ffb703;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.footer-social-wrapper a:hover {
  background-color: #ffb703;
  color: #ffffff;
}

.lunasi-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.lunasi-social a {
  padding: 10px 16px;
  border-radius: 20px;
  background: #f3f5f7;
  color: #ff6a3d;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lunasi-social a:hover {
  background: #ff6a3d;
  color: #ffffff;
}

/* HEADER NAV WRAPPER */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}


