/* ========================================
   Site Footer - Premium Design
   ======================================== */
@charset "UTF-8";

/* Tokens loaded via tokens.css — footer uses CSS custom properties directly */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 48px 0 32px;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Footer Main - Left Right Layout */
.footer-main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-border);
  gap: 0;
}

/* Footer Left - Navigation */
.footer-left {
  display: flex;
  gap: 60px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.footer-nav-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-text);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #000000;
}

.footer-nav-link {
  font-size: 13px;
  color: var(--footer-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer-nav-link:hover {
  color: var(--footer-text);
}

/* Footer Right - Contact */
.footer-right {
  max-width: 360px;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.footer-contact-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.08) 100%);
  border-radius: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--footer-text-secondary);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--footer-text-muted);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: var(--footer-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--footer-text);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Footer Center Logo */
.footer-logo-center {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.footer-logo-center img {
  height: 160px;
  width: auto;
}

.footer-copyright {
  font-size: 12px;
  color: var(--footer-text-muted);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal-link {
  font-size: 12px;
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: var(--footer-text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    gap: 48px;
  }

  .footer-left {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-right {
    max-width: 100%;
  }

  .footer-contact {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 32px;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-left {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav-col {
    min-width: auto;
  }

  .footer-right {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 16px;
  }
}
