
#packages {
  padding: 5rem 0 0;
  background: var(--background);
}

.pkg-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pkg-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.6rem;
}
.pkg-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #1a3d5c;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.dark-theme .pkg-header h2 {
  color: #e8f0ff;
}
.pkg-header p {
  font-size: 1rem;
  color: #6b7280;
}
.dark-theme .pkg-header p {
  color: #9ca3af;
}

.pkg-filter-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 2.5rem;
}
.pkg-filter-wrap::-webkit-scrollbar {
  display: none;
}
.pkg-filters {
  display: flex;
  gap: 0.6rem;
  width: max-content;
  margin: 0 auto;
  padding: 0 1rem;
}
.pkg-tab {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.dark-theme .pkg-tab {
  background: #1f2937;
  border-color: #374151;
  color: #d1d5db;
}
.pkg-tab.active,
.pkg-tab:hover {
  background: #1a3d5c;
  border-color: #1a3d5c;
  color: #fff;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 0;
}
.pkg-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #e5e7eb;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out;
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
}
.dark-theme .pkg-card {
  background: #1f2937;
  border-color: #374151;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.pkg-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
.dark-theme .pkg-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}
.pkg-card[data-filter="jammu"],
.pkg-card[data-filter="kashmir"],
.pkg-card[data-filter="ladakh"],
.pkg-card[data-filter="spiritual"],
.pkg-card[data-filter="adventure"] {
  
}
.pkg-card.hidden {
  display: none;
}

.pkg-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.02);
}

.pkg-card[data-aos] {
  transform: translate3d(0, 1rem, 0);
}
.pkg-card.aos-animate {
  transform: translate3d(0, 0, 0);
}

.pkg-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pkg-badge.adventure {
  background: #d1fae5;
  color: #065f46;
}
.dark-theme .pkg-badge.adventure {
  background: rgba(6, 95, 70, 0.35);
  color: #6ee7b7;
}
.pkg-badge.best-seller {
  background: #fef3c7;
  color: #92400e;
}
.dark-theme .pkg-badge.best-seller {
  background: rgba(146, 64, 14, 0.3);
  color: #fbbf24;
}
.pkg-badge.nature {
  background: #ccfbf1;
  color: #134e4a;
}
.dark-theme .pkg-badge.nature {
  background: rgba(19, 78, 74, 0.35);
  color: #5eead4;
}
.pkg-badge.cultural {
  background: #ede9fe;
  color: #4c1d95;
}
.dark-theme .pkg-badge.cultural {
  background: rgba(76, 29, 149, 0.3);
  color: #c4b5fd;
}

.pkg-heart {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #9ca3af;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.pkg-heart:hover {
  color: #ef4444;
  background: #fff;
}

.pkg-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.pkg-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #6b7280;
}
.dark-theme .pkg-location {
  color: #9ca3af;
}
.pkg-location i {
  font-size: 0.75rem;
  color: #1a3d5c;
}
.dark-theme .pkg-location i {
  color: #6ee7b7;
}
.pkg-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.78rem;
}
.pkg-stars i {
  color: #f59e0b;
}
.pkg-stars span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  margin-left: 0.2rem;
}
.dark-theme .pkg-stars span {
  color: #d1d5db;
}
.pkg-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.dark-theme .pkg-body h3 {
  color: #f3f4f6;
}
.pkg-desc {
  font-size: 1.05rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}
.dark-theme .pkg-desc {
  color: #9ca3af;
}

.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.pkg-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}
.dark-theme .pkg-tag {
  background: #374151;
  color: #d1d5db;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}
.dark-theme .pkg-footer {
  border-color: #374151;
}
.pkg-footer > div {
  width: 100%;
}
.pkg-price-label {
  font-size: 0.72rem;
  color: #9ca3af;
  font-weight: 500;
}
.pkg-price-amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a3d5c;
}
.dark-theme .pkg-price-amount {
  color: #6ee7b7;
}
.pkg-book-btn {
  width: 6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 1.1rem;
  align-self: center;
  margin-left: auto;
  height: 2.5rem;
  line-height: 1;
  border-radius: 0.6rem;
  background: #1a3d5c;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.pkg-book-btn:hover {
  background: #14304a;
  transform: translateY(-1px);
}

.pkg-lead-band {
  margin-top: 4rem;
  background: #1a3d5c;
  padding: 4rem 0;
}
.pkg-lead-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}
.pkg-lead-inner .pkg-lead-heading {
  text-align: center;
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pkg-lead-inner .pkg-lead-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.pkg-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
.pkg-lead-grid .full {
  grid-column: 1 / -1;
}
.pkg-lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pkg-lead-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.pkg-lead-field input,
.pkg-lead-field select,
.pkg-lead-field textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.pkg-lead-field input::placeholder,
.pkg-lead-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.pkg-lead-field select {
  color: rgba(255, 255, 255, 0.9);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.pkg-lead-field select option {
  background: #1a3d5c;
  color: #fff;
}
.pkg-lead-field input:focus,
.pkg-lead-field select:focus,
.pkg-lead-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
}
.pkg-lead-field textarea {
  resize: vertical;
  min-height: 100px;
}
.pkg-submit-btn {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.25rem;
  border-radius: 0.65rem;
  background: #c9920d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.2s,
    transform 0.15s;
  letter-spacing: 0.01em;
}
.pkg-submit-btn:hover {
  background: #b07c08;
  transform: translateY(-1px);
}
.pkg-lead-trust {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

.pkg-lead-confirmation {
  display: none;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 1rem;
}
.pkg-lead-confirmation.visible {
  display: block;
}
.pkg-lead-confirmation strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.pkg-lead-confirmation a {
  color: #fbbf24;
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  #packages {
    padding: 3.5rem 0 0;
  }
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pkg-book-btn {
    max-width: 6rem;
    align-self: flex-start;
    padding: 0.55rem 1.1rem;
  }
  .pkg-lead-grid {
    grid-template-columns: 1fr;
  }
  .pkg-lead-grid .full {
    grid-column: 1;
  }
  .pkg-lead-band {
    padding: 3rem 0;
  }
}
