/* ===== PAGE HERO (shared with about) ===== */
.page-hero {
  background: #1e2a4a;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.page-hero__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: #e8a020; }
.breadcrumb i { font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.breadcrumb span[aria-current] { color: #fff; font-weight: 600; }

/* ===== PACKAGES SECTION ===== */
.packages-section { background: #f7f8fc; padding-top: 2.5rem; }

/* Toolbar: search + filters */
.pkg-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pkg-search {
  position: relative;
  flex: 1;
  max-width: 420px;
}
.pkg-search__icon {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.85rem;
  pointer-events: none;
}
.pkg-search input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.6rem 2.4rem 0.6rem 0.9rem;
  font-size: 0.88rem;
  font-family: inherit;
  color: #1e2a4a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.pkg-search input:focus { border-color: #e8a020; }

/* Filters */
.pkg-filters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pkg-filter {
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  border: 1.5px solid #e0e0e0;
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 600;
  color: #666;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.pkg-filter:hover { border-color: #e8a020; color: #e8a020; }
.pkg-filter--active {
  background: #e8a020;
  border-color: #e8a020;
  color: #fff;
}

.pkg-filter-check {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
}
.pkg-filter-check input[type="checkbox"] {
  accent-color: #e8a020;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* ===== PACKAGES GRID ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

/* ===== PACKAGE CARD ===== */
.pkg-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.pkg-card__img-wrap {
  position: relative;
}
.pkg-card__img-wrap img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
}

/* Badge — reuse from main.css, positioned bottom-right */
.pkg-card__img-wrap .badge {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
}

.pkg-card__body {
  padding: 1rem 1.1rem;
}
.pkg-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e2a4a;
  margin-bottom: 0.4rem;
}
.pkg-card__desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.pkg-card__meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  color: #aaa;
}

/* Footer row: price + button */
.pkg-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
}
.pkg-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: #1e2a4a;
}
.pkg-card__btn {
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  border-radius: 7px;
  white-space: nowrap;
}

/* Footer contact-list, contact-icon, tagline — now in css/components/footer.css */

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .page-hero__title { font-size: 1.5rem; }
  .pkg-toolbar { flex-direction: column; align-items: flex-start; }
  .pkg-search { max-width: 100%; width: 100%; }
  .pkg-grid { grid-template-columns: 1fr; }
}
