
.footer {
  background: linear-gradient(135deg, #2c3e50, #4ca1af);
  /* 渐变背景 */
  color: #fff;
  /* font-family: 'Inter', sans-serif; */
  padding: 30px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* max-width: 100%; */
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  padding-inline: 10%;
}

.footer-left .footer-links {
  display: flex;
  column-gap: 100px;
}

/* 左侧部分：關於 Playful Tours */

.footer-left {
  min-width: 50%;
}

.footer-left h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #f1c40f;
  text-transform: uppercase;
}

.footer-left ul {
  list-style: none;
  padding: 0;
}

.footer-left ul li {
  margin: 8px 0;
}

.footer-left ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-left ul li a:hover {
  color: #f1c40f;
  text-decoration: underline;
  transform: scale(1.05);
}

/* 右侧部分：付款方式 */
.footer-right h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #f1c40f;
  text-transform: uppercase;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.payment-icon {
  height: 50px;
  /* max-width: 60px; */
  width: auto;
}

#vnpay-icon {
  height: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination a {
  text-decoration: none;
  padding: 6px 9px;
  border: 1px solid #ddd;
  color: #007bff;
}

.pagination a:hover {
  background-color: #f0f0f0;
}

.pagination .active a {
  font-weight: bold;
  background-color: #007bff;
  color: white;
}

/* 版权声明 */
.footer-copyright {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  /* color: #fff !important; */
  font-weight: lighter;
}
