/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--cedar-900);
  color: var(--cedar-200);
  padding: 0 0 var(--space-xl);
}

/* Footer logo */
.footer .logo-img {
  height: 60px;
}

/* Footer Top - Contact Info & Hours */
.footer-top {
  display: flex;
  justify-content: center;
  gap: var(--space-4xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-3xl);
}

.footer-top-contact,
.footer-top-hours {
  text-align: center;
}

.footer-top-contact p,
.footer-top-hours p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
}

.footer-phone {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: white !important;
  margin-bottom: var(--space-xs) !important;
}

.footer-hours-title {
  font-weight: 600;
  color: white !important;
  margin-bottom: var(--space-xs) !important;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  color: white;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--cedar-300);
  border-color: var(--cedar-300);
  color: var(--cedar-900);
}

@media (max-width: 576px) {
  .footer-top {
    flex-direction: column;
    gap: var(--space-xl);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
}

.footer-brand .footer-social {
  margin-bottom: var(--space-md);
  justify-content: center;
}

.footer-brand .logo-icon {
  color: white;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand .logo-sub {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  text-align: center;
}

.footer-links h4 {
  color: white;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--space-xl);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-neurostar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.footer-neurostar a:hover {
  color: white;
}
