/* Footer Styles - Shared across all pages */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 60px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-columns {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.footer-columns h4 {
  white-space: nowrap;
  min-height: 24px;
}

.footer-columns .footer-text-list li {
  white-space: nowrap;
}

.footer-areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.footer-areas-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-areas-list a:hover {
  color: var(--teal-light);
}

.footer-brand-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-brand-section img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.footer-brand {
  font-size: 28px;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.footer-brand span {
  color: var(--orange-primary);
}

.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer h4 {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--teal-light);
  transform: translateX(4px);
}

.footer-text-list {
  list-style: none;
}

.footer-text-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #94a3b8;
}

.footer-text-list.two-col {
  columns: 2;
  column-gap: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
}

.license-info {
  font-size: 13px;
  color: #64748b;
}

/* Footer Responsive - 1024px */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer Responsive - 768px */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .footer {
    padding: 40px 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer-brand-section {
    justify-content: center;
  }

  .footer-info {
    text-align: center;
  }

  .footer-columns {
    display: block;
    text-align: center;
  }

  .footer-columns > div {
    margin-bottom: 20px;
  }

  .footer-columns > div:last-child {
    margin-bottom: 0;
  }

  .footer-columns h4 {
    margin-bottom: 10px;
  }

  .footer-columns .footer-text-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .footer-columns .footer-text-list li {
    white-space: nowrap;
  }

  .footer-areas-list {
    justify-content: center;
  }
}
