body {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.tour-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.tour-section h1 {
  color: #c40000;
  font-size: 32px;
  margin-bottom: 30px;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-form select,
.filter-form button {
  padding: 10px 15px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  min-width: 180px;
}

.filter-form button {
  background-color: #c40000;
  color: white;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.filter-form button:hover {
  background-color: #a10000;
}

.tour-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tour-card {
  background: white;
  border-radius: 12px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.tour-card h3 {
  color: #c40000;
  font-size: 20px;
  margin: 10px 0 5px;
}

.tour-card p {
  margin: 4px 0;
  font-size: 14px;
  color: #333;
}

.tour-card .btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background-color: #ffc107;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.tour-card .btn:hover {
  background-color: #e6aa00;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: white;
  font-weight: bold;
}

.soldout {
  background-color: #c40000;
}

.limited {
  background-color: #ffc107;
  color: black;
}

.pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 8px 14px;
  border: 1px solid #ccc;
  background-color: white;
  color: #c40000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.pagination a:hover {
  background-color: #ffe1e1;
}

.pagination a.active {
  background-color: #c40000;
  color: white;
  border-color: #c40000;
}



@media (max-width: 768px) {
  .tour-card {
    width: 90%;
  }

  .filter-form {
    flex-direction: column;
    align-items: center;
  }

  .filter-form select,
  .filter-form button {
    width: 90%;
    max-width: 300px;
  }
}