/* Footer Styles */
footer {
  background-color: #0d0d15;
  border-top: 1px solid #1e1e2f;
  padding: 60px 20px;
  text-align: center;
  color: #888;
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: var(--spacing-xl);
}

.ps-footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ps-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 10px;
}

.ps-footer-links a {
  color: #dcdce0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.ps-footer-links a:hover {
  color: #00d2ff;
  text-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
}

.ps-footer-address {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.ps-footer-copyright {
  font-size: 13px;
  color: #444;
  margin-top: 20px;
}

/* Mobile Footer Stack */
@media (max-width: 600px) {
  .ps-footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
