.footer__layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  background: #F9C400; /* 明亮艺术黄 */
  color: #111;
}

.footer__column {
  flex: 1;
  min-width: 280px;
}

/* 地图样式 */
.footer__map img {
  width: 100%;
}

/* CTA */
.footer__cta-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #111;
}

.footer__cta-subtext {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}


.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  width: 100%;
  max-width: 300px;
  color: white;
}

.footer__btn .icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

.footer__cta-buttons {
  display: flex;
  flex-direction: column;/* 垂直排列 */
  gap: 12px;
  align-items: center;
}

.footer__btn.primary {
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.footer__btn.secondary {
  background: #6366f1;
}

.footer__btn:hover {
 transform: translateY(-2px);

}


/* 社交 */
.footer__social-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.social-circle {
  width: 44px;
  height: 44px;
  background: #fff3cc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, transform 0.3s;
}

.social-circle:hover {
  background: #facc15;
  transform: scale(1.1);
}

.social-circle img {
  width: 24px;
  height: 24px;
}

/* 底部版权 */
.footer__bottom {
  background: #1B174A;  /* 使用下方深蓝紫 */
  color: #f3f4f6;        /* 柔和白或浅灰，避免刺眼 */
  text-align: center;
  padding: 24px 20px;
  font-size: 0.85rem;
}

.footer__links {
  margin-top: 10px;
}

.footer__links a {
  margin: 0 8px;
  color: #ccc;
  text-decoration: underline;
}
