/* Footer — Design System */

.footer {
  position: relative;
  padding: 0;
  width: 100%;
  display: block;
  clear: both;
  background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
  color: rgba(255, 255, 255, 0.7);
}

/* Gradient accent line at top is in fixed-styles.css via .footer::before */

/* Brand strip */
.footer-brand {
  background: var(--color-dark-blue, #16213e);
  text-align: center;
  padding: 1.25rem 0;
}

.footer-brand-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-company-name {
  margin: 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  margin: 0.25rem auto;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Three-column grid */
.footer-columns {
  padding: 2rem 0 1.5rem;
  background: var(--color-dark-blue, #16213e);
}

.footer-columns-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 900px;
}

.footer-col {
  flex: 0 0 30%;
  max-width: 30%;
  text-align: center;
  margin-bottom: 1rem;
}

.footer-col h6 {
  color: #ffffff;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent-light, #a78bfa);
}

.footer-contact li {
  line-height: 1.6;
}

.footer-contact i {
  margin-right: 0.25rem;
  opacity: 0.7;
}

/* Copyright bar */
.footer-bottom-bar {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-darker, #1a1a2e);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.35);
  margin: 0.25rem 0;
  font-size: 0.8rem;
}

.footer-legal {
  margin-top: 0.25rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-accent-light, #a78bfa);
}

/* Responsive */
@media (max-width: 767.98px) {
  .footer-columns-grid {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}
