/* =====================================================================
   VIBES MEDICAL — Packages page CSS
   Extends styles.css with page-specific rules
   ===================================================================== */

/* Active nav-link */
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
  background: var(--gold);
}

/* =====================================================================
   PAGE HERO — Curated journeys headline
   ===================================================================== */
.page-hero {
  background: var(--cream);
  padding: 110px 0 80px;
}
.page-hero .eyebrow {
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 1100px;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.page-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--brown);
  max-width: 700px;
}

/* =====================================================================
   WORLD INCLUDED — Experiences horizontal strip
   ===================================================================== */
.world-included {
  background: var(--cream);
  padding: 60px 0 110px;
}
.wi-head { margin-bottom: 50px; }
.wi-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--navy);
  padding: 8px 22px;
  border: 1px solid var(--navy);
  border-radius: 100px;
  margin-bottom: 26px;
}
.wi-head h2 {
  font-family: var(--sans);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 800px;
}
.wi-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.wi-head .section-sub {
  margin-top: 0;
  max-width: 560px;
}

.wi-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.wi-card {
  transition: transform .25s;
}
.wi-card:hover {
  transform: translateY(-4px);
}
.wi-img {
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}
.wi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wi-dur {
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-bottom: 6px;
}
.wi-name {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.wi-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.wi-foot p {
  font-style: italic;
  font-size: 14.5px;
  color: var(--brown);
}

/* =====================================================================
   FILTER TABS
   ===================================================================== */
.filter-tabs {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  position: sticky;
  top: 73px;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.ft-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ft-tab {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  padding: 9px 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}
.ft-tab:hover {
  color: var(--navy);
  border-color: var(--line);
}
.ft-tab.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* =====================================================================
   FEATURED PACKAGES — 2 wide gold cards
   ===================================================================== */
.featured-packages {
  background: var(--cream);
  padding: 60px 0 30px;
}
.fp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fp-card {
  background: var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  transition: all .3s;
  box-shadow: 0 24px 48px -24px rgba(15, 42, 63, 0.18);
}
.fp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(15, 42, 63, 0.24);
}
.fp-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.fp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fp-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 7px 14px;
  border-radius: 100px;
  z-index: 2;
}
.fp-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
}
.fp-tag {
  font-size: 11.5px;
  color: var(--navy);
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0.7;
}
.fp-body h3 {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.fp-body > p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(15, 42, 63, 0.7);
  margin-bottom: 22px;
}
.fp-clinic {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.fp-clinic-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
}
.fp-clinic-icon img { width: 100%; height: 100%; object-fit: cover; }
.fp-clinic-label {
  font-size: 10.5px;
  color: var(--navy);
  letter-spacing: 0.16em;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 2px;
}
.fp-clinic-name {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.fp-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 42, 63, 0.15);
}
.fp-price-label {
  font-size: 10.5px;
  color: var(--navy);
  letter-spacing: 0.16em;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 3px;
}
.fp-price {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
}
.fp-arr {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: all .25s;
}
.fp-arr svg { width: 18px; height: 18px; }
.fp-arr:hover {
  transform: scale(1.08);
  background: var(--navy-deep);
}

/* =====================================================================
   ALL PACKAGES GRID
   ===================================================================== */
.all-packages {
  background: var(--cream);
  padding: 30px 0 100px;
}
.pk-grid {
  /* inherits from .fj-grid in styles.css */
}

/* Hide cards filtered out */
.fj-card.is-hidden,
.fp-card.is-hidden {
  display: none;
}

/* =====================================================================
   CAN'T FIND THE RIGHT FIT — bottom CTA
   ===================================================================== */
.cant-find {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.cant-find::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 245, 234, 0.6), rgba(250, 245, 234, 0.6)),
    url('https://images.unsplash.com/photo-1568322445389-f64ac2515099?w=2000&q=70');
  background-size: cover;
  background-position: center;
}
.cf-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cf-inner h2 { margin-bottom: 18px; }
.cf-inner .section-sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1180px) {
  .wi-strip { grid-template-columns: repeat(4, 1fr); }
  .wi-img { height: 110px; }
  .fp-grid { grid-template-columns: 1fr; }
  .fp-card { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 80px 0 50px; }
  .page-hero h1 { font-size: 36px; }
  .world-included { padding: 40px 0 80px; }
  .wi-strip { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wi-img { height: 140px; }
  .filter-tabs { padding: 16px 0; }
  .ft-tab { font-size: 13px; padding: 8px 16px; }
  .fp-card { grid-template-columns: 1fr; }
  .fp-img { min-height: 240px; }
  .fp-body { padding: 28px 24px 26px; }
  .fp-body h3 { font-size: 24px; }
  .cant-find { padding: 70px 0; }
}
