@import url("cookies-banner.css");

/* Modern, spacious footer */
.site-footer {
  background: #0a0a0b;
  color: #cbd5e1;
  padding: 5rem 1.5rem 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  font-family: var(--font-family, sans-serif);
}

.footer-container {
  width: min(94%, 1200px);
  margin: 0 auto;
  display: grid;
  /* 4 balanced columns */
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 4rem 2.5rem;
  align-items: start;
}

/* Brand & Contact Column */
.footer-brand-col .brand-link {
  display: inline-block;
  font-weight: 800;
  font-size: 1.5rem;
  color: #f8fafc;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.footer-brand-col .brand-accent { color: #f8fafc; }

.footer-brand-col .brand-tagline {
  margin: 0 0 2rem;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-info {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 600;
}

.contact-item__value {
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item__value a {
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item__value a:hover {
  color: #fff;
}

/* Columns Typography */
.footer-heading {
  margin: 0 0 1.75rem;
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 20px;
  height: 2px;
  background: #334155;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-list a {
  color: #94a3b8;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.4;
}

.footer-list a:hover {
  color: #f1f5f9;
  transform: translateX(4px);
}

/* Knowledge column - specific styling for long list */
.footer-list--knowledge {
  gap: 0.75rem;
}

.footer-list--knowledge li:nth-child(5) {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

/* Social */
.social-list { display: flex; gap: 12px; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(148, 163, 184, 0.04);
  transition: all 0.2s ease;
}
.social-icon:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-3px);
}

/* Cities Section */
.footer-cities-section {
  width: min(94%, 1200px);
  margin: 5rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer-cities-label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-cities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem 1.5rem;
}

.footer-cities__grid a {
  color: #64748b;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-cities__grid a:hover {
  color: #cbd5e1;
}

/* Bottom Bar */
.footer-bottom {
  width: min(94%, 1200px);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright { margin: 0; color: #475569; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-container { 
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
  }
}

@media (max-width: 640px) {
  .site-footer { padding: 4rem 1.25rem 2rem; }
  .footer-container { 
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-cities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
