/* ============================================
   V2 - Modern Footer
   ============================================ */

.site-footer {
  width: 100%;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-inverse);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-inverse);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-inverse);
  text-decoration: none;
}

.footer-contact {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--accent-light);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--text-inverse);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--text-inverse);
  text-decoration: none;
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
