/* Footer Styles */
.seekinggod-footer-link {
  font-size: 0.85rem;
  color: rgba(249, 245, 239, 0.45) !important;
  text-decoration: none !important;
  transition:
    color 0.25s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
  position: relative;
}

.seekinggod-footer-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--gold-light, #d4af7a);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.seekinggod-footer-link:hover {
  color: var(--gold-light, #d4af7a) !important;
  transform: translateX(4px);
}

.seekinggod-footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.seekinggod-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249, 245, 239, 0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.seekinggod-social-icon:hover {
  background: rgba(184, 147, 90, 0.15);
  color: var(--gold-light, #d4af7a);
  border-color: rgba(184, 147, 90, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(184, 147, 90, 0.15);
}
