/* ---------------------------------- */
/* Tour Packages listing — professional redesign
------------------------------------- */
.pkgs-section {
  background: #f7f6fb;
  padding: 60px 0 90px;
}

/* Filter bar */
.pkgs-filter-bar {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(20, 20, 40, 0.08);
  padding: 20px;
  margin-bottom: 40px;
}

.pkgs-filter-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pkgs-filter-field {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.pkgs-filter-field i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #b5b0c9;
  pointer-events: none;
}

.pkgs-filter-select {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 42px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #f8f8f9;
  font-size: 14px;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center, 16px center;
  background-size: 18px, auto;
}

.pkgs-filter-select:focus {
  outline: none;
  border-color: #d63031;
  background-color: #fff;
}

/* js/searched.js turns every <select> into a nice-select plugin widget,
   hiding the real <select> above and inserting this div in its place —
   style that visible widget so the design actually matches what users see. */
.pkgs-filter-field .nice-select {
  width: 100%;
  height: 50px;
  line-height: 48px;
  padding: 0 40px 0 42px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #f8f8f9;
  font-size: 14px;
  color: #333;
}

.pkgs-filter-field .nice-select .current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.pkgs-filter-field .nice-select:after {
  border-color: #999 transparent transparent;
  right: 18px;
}

.pkgs-filter-field .nice-select.open,
.pkgs-filter-field .nice-select:focus {
  border-color: #d63031;
  background: #fff;
}

.pkgs-filter-field .nice-select .list {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(20, 20, 40, 0.15);
}

.pkgs-filter-field .nice-select .option.selected {
  font-weight: 700;
  color: #d63031;
}

.pkgs-filter-field .nice-select .option:hover,
.pkgs-filter-field .nice-select .option.focus {
  background: #f7f6fb;
  color: #d63031;
}

.pkgs-filter-btn {
  height: 50px;
  padding: 0 32px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8483b, #d63031);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(214, 48, 49, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pkgs-filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(214, 48, 49, 0.38);
}

/* Card grid */
.pkgs-grid {
  display: flex;
  flex-wrap: wrap;
}

.pkgs-col {
  display: flex;
  margin-bottom: 28px;
}

.pkgs-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 20, 40, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.pkgs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(20, 20, 40, 0.16);
  text-decoration: none;
}

.pkgs-card-img {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.pkgs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pkgs-card:hover .pkgs-card-img img {
  transform: scale(1.08);
}

.pkgs-card-price {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  background: linear-gradient(135deg, #e8483b, #d63031);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
}

.pkgs-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.pkgs-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e1629;
  margin: 0 0 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 47.6px;
}

.pkgs-card-address {
  color: #767676;
  font-size: 13.5px;
  margin: 0 0 18px;
}

.pkgs-card-address i {
  color: #18ba60;
  margin-right: 6px;
}

.pkgs-card-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #e8483b, #d63031);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .pkgs-section {
    padding: 40px 0 60px;
  }

  .pkgs-filter-form {
    flex-direction: column;
  }
}
