/* Footer Styles */
.site-footer {
  position: relative;
  width: 100%;
  padding-top: 4%;
  background-color: #000519;
  color: #fff !important;
}

.footer-container {
  box-sizing: border-box;
  width: 100%;
  padding-inline: max(10.4167%, calc(50% - 760px));
}

.site-footer,
.site-footer * {
  color: #fff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Contact Section */
/* 用 <address> 標記聯絡資訊，瀏覽器預設會斜體，這裡改回來。 */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  font-style: normal;
}

.phone-icon {
  flex: none;
  width: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-text {
  font-size: 18px;
  margin: 0;
}

.contact-number {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.contact-number a{
color: #fff;
text-decoration: none;
}
.contact-number a:hover{
color: #1484ec;
}

/* Social Media Links */
.social-links {
  display: block;
}

.social-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.social-links-item {
  margin: 0;
  padding: 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 40px;
  height: 40px;
}

/* Legal Section */
.footer-legal {
  padding-top: 30px;
}

.legal-text,
.company-info,
.copyright {
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 20px;
  margin: 0;
}

.legal-text a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
.contact-text {
  font-size: 16px;
  margin: 0;
}

.contact-number {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.legal-text,
.company-info,
.copyright {
  font-size: 0.85rem;
}
  .footer-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
  .site-footer{
    padding: 0;
  }
  /* 手機沒有 footer 設計稿，沿用全站其他區塊的版心：500 / 640 → 左右各 10.9375%。 */
  .footer-container {
    padding-inline: 10.9375%;
  }
  .phone-icon{
    display: none;
  }

  .footer-contact {
      flex-direction: column;
  }

  .contact-info {
    padding-top: 10%;
  }

  .social-links {
      margin-top: 20px;
  }
} 
