/* ========================================
   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 */
.site-footer .footer-right {
  max-width: 360px;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left !important;
}

/* Footer Contact */
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 8px;
  width: 100%;
  text-align: left !important;
}

.site-footer .footer-contact-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding: 6px 0;
  text-align: left !important;
  align-self: flex-start !important;
}

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

.site-footer .footer-contact-item {
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 10px;
  font-size: 13px;
  color: var(--footer-text-secondary);
  line-height: 1.5;
  text-align: left !important;
  width: 100%;
  align-self: flex-start !important;
}

.site-footer .footer-contact-item > span,
.site-footer .footer-contact-item > a {
  text-align: left !important;
  flex: 1;
}

.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-logo-center {
    padding: 16px 0;
  }

  .footer-logo-center img {
    height: auto;
    width: 100%;
    max-width: 320px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-contact-title,
  .footer-contact-item {
    align-self: flex-start;
    text-align: left;
  }

  .site-footer .footer-contact-title svg {
    display: none;
  }

  .footer-contact-item {
    gap: 0;
  }

  .footer-contact-item svg {
    display: none;
  }

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

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