/* Footer 样式 */
.footer { background:#fff; border-top:1px solid #e5e7eb; }
.footer-grid { max-width:1180px; margin:0 auto; padding:24px 12px; display:grid; grid-template-columns: 300px repeat(7,1fr) 280px; gap:20px; align-items:start; }

/* 左側品牌 */
.footer-brand { color:#1f2937; }
.brand-logo { height:44px; display:block; }
.brand-desc { margin:10px 0 12px; color:#4b5563; font-size:14px; line-height:1.6; }
.brand-map { display:flex; gap:10px; align-items:center; background:#f5faf8; border:1px solid #e3efe9; border-radius:10px; padding:10px; }
.brand-map img { width:28px; height:28px; }
.brand-map .map-text { color:#46685d; font-size:13px; }

/* 中contact-card間欄位 */
.footer-col { min-width:90px; }
.col-title { font-weight:700; color:#1f2937; font-size:14px; margin-bottom:8px; }
.col-list { list-style:none; padding:0; margin:0; }
.col-list li { margin:6px 0; }
.col-list a { color:#4b5563; font-size:13px; }
.col-list a:hover { color:#0f5132; }

/* 右側聯絡卡 */
.contact-card { background:#f5faf8; border:1px solid #e3efe9; border-radius:12px; padding:14px; color:#1f2937; }
.contact-title { font-weight:700; margin-bottom:10px; }
.contact-item { display:flex; gap:10px; align-items:flex-start; margin:8px 0; }
.contact-icon { width:22px; height:22px; }
.contact-text { color:#46685d; font-size:13px; }
.contact-text .sub { color:#6b7280; font-size:12px; }
.follow-title { margin-top:12px; font-weight:700; }
.follow-icons { margin-top:8px; display:flex; gap:10px; }
.follow-icon { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:10px; border:1px solid #e3efe9; background:#fff; }
.follow-icon img { width:18px; height:18px; }
.follow-icon:hover { border-color:#cde2da; }

.footer-bottom { max-width:1180px; margin:0 auto; padding:12px; color:#6b7280; font-size:13px; border-top:1px dashed #e5e7eb; }

/* 響應式 */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}