/* =========================================================
   BPDC ACTIVITY TEMPLATE
   Shared styles for individual dive trips and dive packages.
   Global site styles remain in ../styles.css.
   ========================================================= */
/* =========================================================
   SHARED LOCAL DIVING HERO
   ========================================================= */

.diving-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.60) 42%,
      rgba(0, 0, 0, 0.18) 78%
    ),
    url("../../images/reef-diver.webp");
}

@media (max-width: 640px) {
  .diving-hero {
    background-position: 60% center;
  }
}

/* =========================================================
   INDIVIDUAL ACTIVITY HERO
   ========================================================= */

.activity-hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 26px;
  margin-bottom: 28px;
}

.activity-price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;

  padding: 11px 18px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;

  backdrop-filter: blur(8px);
}

.activity-price strong {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
}

.activity-price span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* =========================================================
   INDIVIDUAL ACTIVITY PAGE
   ========================================================= */


/* ---------------------------------------------------------
   QUICK INFORMATION STRIP
   --------------------------------------------------------- */

.activity-quick-section {
  background: var(--black);
  color: var(--white);
}

.activity-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.activity-quick-item {
  position: relative;

  padding: 25px 22px;

  border-right: 1px solid
    rgba(255, 255, 255, 0.12);
}

.activity-quick-item:first-child {
  border-left: 1px solid
    rgba(255, 255, 255, 0.12);
}

.activity-quick-item span {
  display: block;

  margin-bottom: 7px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-quick-item strong {
  display: block;

  color: var(--white);

  font-size: 0.86rem;
  line-height: 1.4;
}


/* ---------------------------------------------------------
   DETAILS SECTION
   --------------------------------------------------------- */

.activity-details-section {
  background: var(--white);
}

.activity-details-heading {
  max-width: 820px;

  margin-bottom: 58px;
}

.activity-details-heading h2 {
  max-width: 760px;

  margin-top: 12px;
  margin-bottom: 20px;
}

.activity-details-heading .lead {
  max-width: 760px;
}


/* ---------------------------------------------------------
   TWO COLUMN DETAILS LAYOUT
   --------------------------------------------------------- */

.activity-details-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(320px, 0.72fr);

  gap: 70px;

  align-items: start;
}


/* ---------------------------------------------------------
   MAIN DESCRIPTION
   --------------------------------------------------------- */

.activity-description h3 {
  margin-top: 38px;
  margin-bottom: 18px;

  font-size: 1.7rem;
}

.activity-description h3:first-child {
  margin-top: 0;
}

.activity-description > p {
  max-width: 780px;

  margin-bottom: 21px;

  color: var(--gray);

  font-size: 0.98rem;
  line-height: 1.85;
}

.activity-description > p strong {
  color: var(--black);
}


/* ---------------------------------------------------------
   30+ DIVE SITE FEATURE
   --------------------------------------------------------- */

.activity-feature-callout {
  display: flex;
  align-items: center;

  gap: 25px;

  margin: 38px 0 46px;
  padding: 28px 32px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.activity-feature-number {
  flex: 0 0 auto;

  color: var(--red);

  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1;
}

.activity-feature-callout strong {
  display: block;

  margin-bottom: 6px;

  color: var(--black);

  font-size: 1rem;
}

.activity-feature-callout p {
  margin: 0;

  color: var(--gray);

  font-size: 0.87rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   DEPTH FEATURE
   --------------------------------------------------------- */

.activity-depth-banner {
  display: grid;

  grid-template-columns:
    minmax(200px, 0.65fr)
    minmax(0, 1fr);

  gap: 34px;

  align-items: center;

  margin: 42px 0;
  padding: 30px 34px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.activity-depth-banner span {
  display: block;

  margin-bottom: 8px;

  color: rgba(255, 255, 255, 0.54);

  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-depth-banner strong {
  color: var(--white);

  font-size: 1.55rem;
}

.activity-depth-banner p {
  margin: 0;

  color: rgba(255, 255, 255, 0.67);

  font-size: 0.87rem;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   INCLUDED / NOT INCLUDED
   --------------------------------------------------------- */

.activity-inclusions-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;

  margin-top: 42px;
}

.activity-info-box {
  padding: 30px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.activity-box-label {
  display: block;

  margin-bottom: 7px;

  color: var(--red);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.activity-info-box h4 {
  margin-bottom: 20px;

  color: var(--black);

  font-size: 1.12rem;
}

.activity-check-list {
  display: grid;

  gap: 13px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.activity-check-list li {
  position: relative;

  padding-left: 24px;

  color: var(--gray);

  font-size: 0.88rem;
  line-height: 1.5;
}

.activity-check-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: var(--red);

  font-weight: 900;
}

.activity-not-included li::before {
  content: "—";
}


/* ---------------------------------------------------------
   REFRESHER / SAFETY NOTICE
   --------------------------------------------------------- */

.dive-safety-notice {
  display: grid;

  grid-template-columns: 58px 1fr;

  gap: 24px;

  margin-top: 45px;
  padding: 30px 34px;

  background: #fff3f3;

  border: 1px solid
    rgba(220, 30, 40, 0.18);

  border-left: 5px solid var(--red);

  border-radius: var(--radius);
}

.dive-safety-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  background: var(--red);

  border-radius: 50%;

  color: var(--white);

  font-size: 1.6rem;
  font-weight: 900;
}

.dive-safety-notice span {
  display: block;

  margin-bottom: 7px;

  color: var(--red);

  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dive-safety-notice h3 {
  margin: 0 0 9px;

  color: var(--black);

  font-size: 1.35rem;
}

.dive-safety-notice p {
  margin: 0 0 11px;

  color: var(--gray);

  font-size: 0.9rem;
  line-height: 1.6;
}

.dive-safety-notice a {
  color: var(--black);

  font-size: 0.82rem;
  font-weight: 900;
}

.dive-safety-notice a:hover {
  color: var(--red);
}


/* ---------------------------------------------------------
   BOOKING SUMMARY
   --------------------------------------------------------- */

.activity-summary-card {
  position: sticky;

  top: 120px;

  padding: 34px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.activity-summary-label {
  display: block;

  margin-bottom: 17px;

  color: rgba(255, 255, 255, 0.53);

  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   SUMMARY PRICE
   --------------------------------------------------------- */

.activity-summary-price {
  display: flex;

  align-items: baseline;

  gap: 7px;

  padding-bottom: 25px;
  margin-bottom: 7px;

  border-bottom: 1px solid
    rgba(255, 255, 255, 0.14);
}

.activity-summary-price strong {
  color: var(--white);

  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
}

.activity-summary-price span {
  color: rgba(255, 255, 255, 0.58);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   SUMMARY ROWS
   --------------------------------------------------------- */

.activity-summary-list {
  display: grid;
}

.activity-summary-item {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 22px;

  padding: 16px 0;

  border-bottom: 1px solid
    rgba(255, 255, 255, 0.11);
}

.activity-summary-item .summary-key {
  color: rgba(255, 255, 255, 0.51);

  font-size: 0.76rem;
  font-weight: 700;
}

.activity-summary-item strong {
  max-width: 170px;

  color: var(--white);

  font-size: 0.8rem;
  line-height: 1.45;

  text-align: right;
}


/* ---------------------------------------------------------
   AFTERNOON DEPARTURE NOTE
   --------------------------------------------------------- */

.activity-fee-note {
  margin-top: 23px;
  padding: 18px;

  background: rgba(255, 255, 255, 0.07);

  border-radius: 14px;
}

.activity-fee-note strong {
  display: block;

  margin-bottom: 7px;

  color: var(--white);

  font-size: 0.78rem;
}

.activity-fee-note p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.76rem;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   TAX NOTE
   --------------------------------------------------------- */

.activity-tax-note {
  margin-top: 13px;
  padding: 16px 18px;

  border: 1px solid
    rgba(255, 255, 255, 0.13);

  border-radius: 14px;
}

.activity-tax-note span {
  display: block;

  margin-bottom: 5px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.activity-tax-note p {
  margin: 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.75rem;
  line-height: 1.5;
}


/* ---------------------------------------------------------
   BOOKING BUTTONS
   --------------------------------------------------------- */

.activity-summary-button {
  width: 100%;

  margin-top: 22px;
}

.activity-secondary-button {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 46px;

  margin-top: 10px;

  border: 1px solid
    rgba(255, 255, 255, 0.19);

  border-radius: 999px;

  color: var(--white);

  font-size: 0.8rem;
  font-weight: 900;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.activity-secondary-button:hover {
  background: rgba(255, 255, 255, 0.09);

  border-color:
    rgba(255, 255, 255, 0.32);

  color: var(--white);
}


/* ---------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------- */

.activity-final-cta {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 50px;

  padding: 48px 52px;

  background: var(--white);

  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow:
    0 16px 42px rgba(13, 13, 15, 0.07);
}

.activity-final-cta > div:first-child {
  max-width: 680px;
}

.activity-final-cta h2 {
  margin-top: 11px;
  margin-bottom: 15px;

  font-size: clamp(
    2rem,
    4vw,
    3.1rem
  );
}

.activity-final-cta p {
  margin: 0;

  color: var(--gray);

  line-height: 1.7;
}

.activity-final-actions {
  display: flex;

  flex-direction: column;

  gap: 10px;

  flex: 0 0 auto;
}


/* =========================================================
   ACTIVITY PAGE - TABLET
   ========================================================= */

@media (max-width: 960px) {

  .activity-quick-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .activity-quick-item:nth-child(4),
  .activity-quick-item:nth-child(5) {
    border-top: 1px solid
      rgba(255, 255, 255, 0.12);
  }

  .activity-details-grid {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .activity-summary-card {
    position: static;
  }

  .activity-final-cta {
    align-items: flex-start;

    flex-direction: column;
  }

  .activity-final-actions {
    flex-direction: row;
  }

}


/* =========================================================
   ACTIVITY PAGE - MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .activity-quick-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .activity-quick-item {
    padding: 21px 17px;

    border-top: 1px solid
      rgba(255, 255, 255, 0.1);
  }

  .activity-quick-item:first-child,
  .activity-quick-item:nth-child(2) {
    border-top: 0;
  }

  .activity-details-heading {
    margin-bottom: 38px;
  }

  .activity-feature-callout {
    align-items: flex-start;

    padding: 24px;

    flex-direction: column;

    gap: 15px;
  }

  .activity-depth-banner {
    grid-template-columns: 1fr;

    gap: 18px;

    padding: 27px 24px;
  }

  .activity-inclusions-grid {
    grid-template-columns: 1fr;
  }

  .activity-info-box {
    padding: 25px 22px;
  }

  .dive-safety-notice {
    grid-template-columns: 1fr;

    padding: 26px 23px;
  }

  .activity-summary-card {
    padding: 28px 23px;
  }

  .activity-summary-item {
    gap: 15px;
  }

  .activity-summary-item strong {
    max-width: 155px;
  }

  .activity-final-cta {
    padding: 34px 25px;
  }

  .activity-final-actions {
    width: 100%;

    flex-direction: column;
  }

  .activity-final-actions .btn {
    width: 100%;
  }

}
/* =========================================================
   ACTIVITY SCHEDULE
   ========================================================= */

.activity-schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  margin: 30px 0 44px;
}

.activity-schedule-item {
  padding: 25px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.activity-schedule-item span {
  display: block;

  margin-bottom: 7px;

  color: var(--red);

  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-schedule-item strong {
  display: block;

  margin-bottom: 9px;

  color: var(--black);

  font-size: 1.05rem;
}

.activity-schedule-item p {
  margin: 0;

  color: var(--gray);

  font-size: 0.84rem;
  line-height: 1.55;
}


/* =========================================================
   AFTERNOON DIVING PANEL
   ========================================================= */

.afternoon-dive-panel {
  margin: 44px 0;

  padding: 34px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.afternoon-dive-panel .eyebrow {
  color: var(--white);
}

.afternoon-dive-panel h3 {
  margin-top: 9px;
  margin-bottom: 12px;

  color: var(--white);
}

.afternoon-dive-panel > p {
  max-width: 650px;

  color: rgba(255, 255, 255, 0.7);
}

.afternoon-dive-panel > p strong {
  color: var(--white);
}

.afternoon-times {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

  margin-top: 25px;
}

.afternoon-times > div {
  padding: 18px;

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid
    rgba(255, 255, 255, 0.1);

  border-radius: 14px;
}

.afternoon-times span {
  display: block;

  margin-bottom: 6px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.afternoon-times strong {
  color: var(--white);

  font-size: 1rem;
}

.afternoon-dive-panel .afternoon-note {
  margin: 19px 0 0;

  color: rgba(255, 255, 255, 0.56);

  font-size: 0.78rem;
}


/* =========================================================
   DIVE GUIDE STANDARD
   ========================================================= */

.activity-standard-panel {
  display: grid;

  grid-template-columns:
    minmax(150px, 0.4fr)
    minmax(0, 1fr);

  gap: 28px;

  margin: 42px 0;

  padding: 28px 32px;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.activity-standard-label {
  color: var(--red);

  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-standard-content strong {
  display: block;

  margin-bottom: 7px;

  color: var(--black);

  font-size: 1.1rem;
}

.activity-standard-content p {
  margin: 0;

  color: var(--gray);

  font-size: 0.87rem;
  line-height: 1.6;
}


/* =========================================================
   BPDC CERTIFIED DIVER PERK
   ========================================================= */

.bpdc-perk-notice {
  margin-top: 44px;

  padding: 32px 34px;

  background: var(--light);

  border: 1px solid var(--line);
  border-left: 5px solid var(--red);

  border-radius: var(--radius);
}

.bpdc-perk-label {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bpdc-perk-notice h3 {
  margin: 0 0 12px;

  color: var(--black);

  font-size: 1.45rem;
}

.bpdc-perk-notice p {
  margin: 0;

  color: var(--gray);

  line-height: 1.65;
}

.bpdc-perk-notice p strong {
  color: var(--black);
}

.bpdc-perk-notice .bpdc-perk-small {
  margin-top: 9px;

  font-size: 0.78rem;
}


/* =========================================================
   PRIVATE DIVE CARD
   ========================================================= */

.private-dive-card {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 35px;

  margin-top: 45px;
  padding: 35px;

  background: var(--white);

  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow:
    0 14px 38px rgba(13, 13, 15, 0.07);
}

.private-dive-card > div {
  max-width: 560px;
}

.private-dive-card h3 {
  margin: 9px 0 10px;

  font-size: 1.5rem;
}

.private-dive-card p {
  margin: 0;

  color: var(--gray);

  font-size: 0.9rem;
  line-height: 1.65;
}

.private-dive-card .btn {
  flex: 0 0 auto;
}


/* TABLET */

@media (max-width: 960px) {

  .private-dive-card {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .activity-schedule {
    grid-template-columns: 1fr;
  }

  .afternoon-times {
    grid-template-columns: 1fr;
  }

  .activity-standard-panel {
    grid-template-columns: 1fr;

    gap: 12px;

    padding-right: 0;
    padding-left: 0;
  }

  .bpdc-perk-notice {
    padding: 27px 23px;
  }

  .private-dive-card {
    padding: 28px 23px;
  }

  .private-dive-card .btn {
    width: 100%;
  }

}
/* =========================================================
   DIVE + SNORKEL COMBO ROUTE
   ========================================================= */

.combo-route {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  gap: 14px;

  align-items: stretch;

  margin: 30px 0 46px;
}

.combo-route-item {
  display: flex;

  gap: 15px;

  padding: 24px 20px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.combo-route-number {
  flex: 0 0 auto;

  color: var(--red);

  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.combo-route-label {
  display: block;

  margin-bottom: 6px;

  color: var(--gray);

  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.combo-route-item strong {
  display: block;

  margin-bottom: 7px;

  color: var(--black);

  font-size: 0.94rem;
}

.combo-route-item p {
  margin: 0;

  color: var(--gray);

  font-size: 0.78rem;
  line-height: 1.55;
}

.combo-route-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--red);

  font-size: 1.4rem;
  font-weight: 900;
}


/* TABLET */

@media (max-width: 960px) {

  .combo-route {
    grid-template-columns: 1fr;
  }

  .combo-route-arrow {
    transform: rotate(90deg);

    min-height: 12px;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .combo-route-item {
    padding: 22px 18px;
  }

}

/* =========================================================
   NIGHT DIVE PAGE
   ========================================================= */


/* ---------------------------------------------------------
   NIGHT HERO
   --------------------------------------------------------- */

.night-dive-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 7, 18, 0.94) 0%,
      rgba(3, 18, 35, 0.82) 42%,
      rgba(1, 19, 39, 0.42) 78%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18),
      rgba(0, 14, 30, 0.42)
    ),
    url("../../images/aerial-reef.webp");
}


/* ---------------------------------------------------------
   NIGHT MARINE LIFE HIGHLIGHTS
   --------------------------------------------------------- */

.night-highlights {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

  margin: 32px 0 20px;
}

.night-highlight-item {
  padding: 26px 23px;

  background: var(--black);

  border: 1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: var(--radius);

  color: var(--white);
}

.night-highlight-item > span {
  display: block;

  margin-bottom: 9px;

  color: rgba(255, 255, 255, 0.48);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.night-highlight-item strong {
  display: block;

  margin-bottom: 10px;

  color: var(--white);

  font-size: 1rem;
}

.night-highlight-item p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.82rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   WILDLIFE DISCLAIMER
   --------------------------------------------------------- */

.wildlife-note {
  margin: 0 0 44px;

  color: var(--gray);

  font-size: 0.76rem;
  font-style: italic;
}


/* ---------------------------------------------------------
   NIGHT EQUIPMENT NOTICE
   --------------------------------------------------------- */

.night-equipment-notice {
  margin-top: 44px;

  padding: 32px 34px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.night-equipment-label {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.night-equipment-notice h3 {
  margin: 0 0 11px;

  color: var(--white);

  font-size: 1.45rem;
}

.night-equipment-notice p {
  margin: 0;

  color: rgba(255, 255, 255, 0.67);

  font-size: 0.9rem;
  line-height: 1.65;
}


/* TABLET */

@media (max-width: 960px) {

  .night-highlights {
    grid-template-columns: 1fr;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .night-highlight-item {
    padding: 23px 20px;
  }

  .night-equipment-notice {
    padding: 27px 23px;
  }

}

/* =========================================================
   GREAT BLUE HOLE / LIGHTHOUSE REEF
   ========================================================= */


/* ---------------------------------------------------------
   DIVE SITE CARDS
   --------------------------------------------------------- */

.blue-hole-sites {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin: 30px 0 48px;
}

.blue-hole-site-card {
  padding: 28px 24px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blue-hole-site-number {
  display: block;

  margin-bottom: 13px;

  color: var(--red);

  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blue-hole-site-location {
  display: block;

  margin-bottom: 6px;

  color: var(--gray);

  font-size: 0.72rem;
  font-weight: 800;
}

.blue-hole-site-card h4 {
  margin: 0 0 17px;

  color: var(--black);

  font-size: 1.15rem;
  line-height: 1.3;
}

.blue-hole-site-stats {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-bottom: 18px;
}

.blue-hole-site-stats span {
  padding: 6px 9px;

  background: var(--white);

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--black);

  font-size: 0.66rem;
  font-weight: 800;
}

.blue-hole-site-card p {
  margin: 0;

  color: var(--gray);

  font-size: 0.83rem;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   OFFSHORE ITINERARY
   --------------------------------------------------------- */

.offshore-timeline {
  position: relative;

  display: grid;

  gap: 0;

  margin: 32px 0 50px;
}

.offshore-timeline::before {
  content: "";

  position: absolute;

  left: 84px;
  top: 12px;
  bottom: 12px;

  width: 1px;

  background: var(--line);
}

.offshore-timeline-item {
  position: relative;

  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 34px;

  padding: 0 0 28px;
}

.offshore-timeline-item::before {
  content: "";

  position: absolute;

  left: 79px;
  top: 7px;

  width: 11px;
  height: 11px;

  background: var(--red);

  border: 3px solid var(--white);
  border-radius: 50%;

  box-shadow:
    0 0 0 1px var(--line);
}

.offshore-time {
  padding-top: 1px;

  color: var(--red);

  font-size: 0.72rem;
  font-weight: 900;
}

.offshore-timeline-item strong {
  display: block;

  margin-bottom: 6px;

  color: var(--black);

  font-size: 1rem;
}

.offshore-timeline-item p {
  max-width: 630px;

  margin: 0;

  color: var(--gray);

  font-size: 0.84rem;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   BLUE HOLE SAFETY
   --------------------------------------------------------- */

.blue-hole-safety {
  margin: 46px 0;

  padding: 34px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.blue-hole-safety-label {
  display: block;

  margin-bottom: 9px;

  color: var(--red);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blue-hole-safety h3 {
  margin: 0 0 13px;

  color: var(--white);

  font-size: 1.55rem;
}

.blue-hole-safety p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  line-height: 1.7;
}

.blue-hole-safety p strong {
  color: var(--white);
}


/* ---------------------------------------------------------
   DIVER REQUIREMENTS
   --------------------------------------------------------- */

.blue-hole-requirements {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin: 30px 0 42px;
}

.blue-hole-requirement-item {
  display: flex;

  gap: 17px;

  padding: 25px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blue-hole-requirement-item > span {
  flex: 0 0 auto;

  color: var(--red);

  font-size: 1.15rem;
  font-weight: 900;
}

.blue-hole-requirement-item strong {
  display: block;

  margin-bottom: 7px;

  color: var(--black);

  font-size: 0.95rem;
}

.blue-hole-requirement-item p {
  margin: 0;

  color: var(--gray);

  font-size: 0.82rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   FINAL DIVE TEAM APPROVAL
   --------------------------------------------------------- */

.blue-hole-approval-note {
  margin: 20px 0 45px;

  padding: 22px 25px;

  border: 1px solid var(--line);
  border-left: 4px solid var(--black);

  border-radius: 12px;
}

.blue-hole-approval-note strong {
  display: block;

  margin-bottom: 7px;

  color: var(--black);

  font-size: 0.9rem;
}

.blue-hole-approval-note p {
  margin: 0;

  color: var(--gray);

  font-size: 0.82rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   SNORKEL / DEEP-DIVE ALTERNATIVE
   --------------------------------------------------------- */

.blue-hole-option-card {
  margin: 45px 0;

  padding: 34px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blue-hole-option-card h3 {
  margin: 9px 0 14px;

  color: var(--black);

  font-size: 1.45rem;
}

.blue-hole-option-card p {
  margin: 0 0 12px;

  color: var(--gray);

  line-height: 1.65;
}

.blue-hole-option-card p:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   OFFSHORE BOAT
   --------------------------------------------------------- */

.offshore-boat-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;

  margin: 30px 0 45px;
}

.offshore-boat-item {
  padding: 24px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.offshore-boat-item span {
  display: block;

  margin-bottom: 7px;

  color: var(--red);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offshore-boat-item strong {
  display: block;

  margin-bottom: 8px;

  color: var(--black);

  font-size: 0.95rem;
}

.offshore-boat-item p {
  margin: 0;

  color: var(--gray);

  font-size: 0.8rem;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   PRICE BREAKDOWN
   --------------------------------------------------------- */

.blue-hole-price-breakdown {
  margin-top: 23px;

  padding: 19px;

  background: rgba(255, 255, 255, 0.07);

  border-radius: 14px;
}

.blue-hole-price-label {
  display: block;

  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blue-hole-price-row,
.blue-hole-price-total,
.blue-hole-optional-price {
  display: flex;

  justify-content: space-between;

  gap: 18px;

  padding: 8px 0;
}

.blue-hole-price-row span,
.blue-hole-optional-price span {
  color: rgba(255, 255, 255, 0.6);

  font-size: 0.76rem;
}

.blue-hole-price-row strong,
.blue-hole-optional-price strong {
  color: var(--white);

  font-size: 0.78rem;
}

.blue-hole-price-total {
  margin-top: 5px;
  padding-top: 13px;

  border-top: 1px solid
    rgba(255, 255, 255, 0.13);
}

.blue-hole-price-total span {
  color: var(--white);

  font-size: 0.78rem;
  font-weight: 900;
}

.blue-hole-price-total strong {
  color: var(--white);

  font-size: 1rem;
}

.blue-hole-optional-price {
  margin-top: 7px;
  padding-top: 12px;

  border-top: 1px dashed
    rgba(255, 255, 255, 0.15);
}

.blue-hole-price-breakdown > p {
  margin: 12px 0 0;

  color: rgba(255, 255, 255, 0.52);

  font-size: 0.7rem;
  line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .blue-hole-sites {
    grid-template-columns: 1fr;
  }

  .blue-hole-requirements {
    grid-template-columns: 1fr;
  }

  .offshore-boat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .blue-hole-site-card {
    padding: 25px 21px;
  }

  .offshore-timeline::before {
    left: 8px;
  }

  .offshore-timeline-item {
    grid-template-columns: 1fr;

    gap: 7px;

    padding-left: 30px;
  }

  .offshore-timeline-item::before {
    left: 3px;
  }

  .offshore-time {
    padding-top: 0;
  }

  .blue-hole-safety {
    padding: 28px 23px;
  }

  .blue-hole-requirement-item {
    padding: 22px 20px;
  }

  .blue-hole-option-card {
    padding: 27px 23px;
  }

  .offshore-boat-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================================================
   TURNEFFE WILDLIFE
   ========================================================= */

.turneffe-wildlife-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;

  margin: 30px 0 18px;
}

.turneffe-wildlife-item {
  padding: 24px;

  background: var(--light);

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.turneffe-wildlife-item span {
  display: block;

  margin-bottom: 7px;

  color: var(--red);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.turneffe-wildlife-item strong {
  display: block;

  margin-bottom: 9px;

  color: var(--black);

  font-size: 0.97rem;
}

.turneffe-wildlife-item p {
  margin: 0;

  color: var(--gray);

  font-size: 0.81rem;
  line-height: 1.58;
}


@media (max-width: 960px) {

  .turneffe-wildlife-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 640px) {

  .turneffe-wildlife-grid {
    grid-template-columns: 1fr;
  }

  .turneffe-wildlife-item {
    padding: 22px 20px;
  }

}

/* =========================================================
   THE WITCONCRETE / WIT WRECK
   ========================================================= */


/* ---------------------------------------------------------
   WIT HERO
   --------------------------------------------------------- */

.wit-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 8, 14, 0.94) 0%,
      rgba(8, 20, 30, 0.79) 44%,
      rgba(8, 30, 42, 0.30) 80%
    ),
    url("../../images/witconcrete.webp");

  background-position: center;
  background-size: cover;
}


/* ---------------------------------------------------------
   WIT HISTORY PANEL
   --------------------------------------------------------- */

.wit-story-panel {
  display: grid;

  grid-template-columns:
    minmax(150px, 0.34fr)
    minmax(0, 1fr);

  gap: 38px;

  align-items: center;

  margin: 0 0 22px;
  padding: 38px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.wit-story-number {
  padding-right: 32px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.14);
}

.wit-story-number span {
  display: block;

  margin-bottom: 8px;

  color:
    rgba(255, 255, 255, 0.48);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wit-story-number strong {
  display: block;

  color: var(--white);

  font-size:
    clamp(
      2.6rem,
      5vw,
      4.2rem
    );

  font-weight: 900;
  line-height: 0.95;
}

.wit-story-number small {
  display: block;

  margin-top: 8px;

  color: var(--red);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.wit-story-content .eyebrow {
  color: var(--red);
}

.wit-story-content h2 {
  margin: 8px 0 15px;

  color: var(--white);

  font-size: 1.55rem;
}

.wit-story-content p {
  margin: 0 0 12px;

  color:
    rgba(255, 255, 255, 0.67);

  font-size: 0.88rem;
  line-height: 1.68;
}

.wit-story-content p:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   WIT FACT STRIP
   --------------------------------------------------------- */

.wit-fact-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  margin: 0 0 48px;

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  overflow: hidden;
}

.wit-fact-item {
  padding: 22px;

  background: var(--light);

  border-right:
    1px solid var(--line);
}

.wit-fact-item:last-child {
  border-right: 0;
}

.wit-fact-item span {
  display: block;

  margin-bottom: 6px;

  color: var(--gray);

  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wit-fact-item strong {
  color: var(--black);

  font-size: 0.86rem;
  line-height: 1.4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .wit-story-panel {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .wit-story-number {
    padding-right: 0;
    padding-bottom: 24px;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.14);
  }

  .wit-fact-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .wit-fact-item:nth-child(2) {
    border-right: 0;
  }

  .wit-fact-item:nth-child(1),
  .wit-fact-item:nth-child(2) {
    border-bottom:
      1px solid var(--line);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .wit-story-panel {
    padding: 28px 23px;
  }

  .wit-fact-grid {
    grid-template-columns: 1fr;
  }

  .wit-fact-item {
    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }

  .wit-fact-item:last-child {
    border-bottom: 0;
  }

}

/* =========================================================
   WITCONCRETE — COMPLETE PAGE OVERRIDES
   ========================================================= */


/* ---------------------------------------------------------
   IMPORTANT:
   WIT INTRODUCTION MUST SCROLL NORMALLY

   This prevents any older sticky positioning from causing
   "What is The WIT?" and its description to remain stagnant.
   --------------------------------------------------------- */

.wit-page .wit-page-intro {
  position: static !important;
  top: auto !important;
  inset: auto !important;
  transform: none !important;

  margin-bottom: 58px;
}


/* ---------------------------------------------------------
   GENERAL SECTION SPACING

   Gives each major content section more room to breathe.
   --------------------------------------------------------- */

.wit-page .wit-content-section {
  margin-top: 0;
  margin-bottom: 76px;
}

.wit-page .wit-content-section:last-child {
  margin-bottom: 0;
}

.wit-page .activity-description > section > h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.wit-page .activity-description > section > p {
  margin-bottom: 18px;
}


/* ---------------------------------------------------------
   WIT HERO
   --------------------------------------------------------- */

.wit-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 8, 14, 0.94) 0%,
      rgba(8, 20, 30, 0.79) 44%,
      rgba(8, 30, 42, 0.30) 80%
    ),
    url("../../images/witconcrete.webp");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* ---------------------------------------------------------
   WIT HISTORY PANEL
   --------------------------------------------------------- */

.wit-page .wit-story-panel {
  display: grid;

  grid-template-columns:
    minmax(150px, 0.34fr)
    minmax(0, 1fr);

  gap: 38px;

  align-items: center;

  padding: 38px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.wit-page .wit-story-number {
  padding-right: 32px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.14);
}

.wit-page .wit-story-number span {
  display: block;

  margin-bottom: 8px;

  color:
    rgba(255, 255, 255, 0.48);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wit-page .wit-story-number strong {
  display: block;

  color: var(--white);

  font-size:
    clamp(
      2.6rem,
      5vw,
      4.2rem
    );

  font-weight: 900;
  line-height: 0.95;
}

.wit-page .wit-story-number small {
  display: block;

  margin-top: 8px;

  color: var(--red);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.wit-page .wit-story-content .eyebrow {
  color: var(--red);
}

.wit-page .wit-story-content h2 {
  margin: 8px 0 15px;

  color: var(--white);

  font-size: 1.55rem;
}

.wit-page .wit-story-content p {
  margin: 0 0 14px;

  color:
    rgba(255, 255, 255, 0.67);

  font-size: 0.88rem;
  line-height: 1.68;
}

.wit-page .wit-story-content p:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   WIT FACT STRIP
   --------------------------------------------------------- */

.wit-page .wit-fact-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  overflow: hidden;
}

.wit-page .wit-fact-item {
  padding: 22px;

  background: var(--light);

  border-right:
    1px solid var(--line);
}

.wit-page .wit-fact-item:last-child {
  border-right: 0;
}

.wit-page .wit-fact-item span {
  display: block;

  margin-bottom: 6px;

  color: var(--gray);

  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wit-page .wit-fact-item strong {
  color: var(--black);

  font-size: 0.86rem;
  line-height: 1.4;
}


/* ---------------------------------------------------------
   MARINE LIFE CARDS
   --------------------------------------------------------- */

.wit-page .turneffe-wildlife-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;

  margin-top: 30px;
  margin-bottom: 22px;
}

.wit-page .turneffe-wildlife-item {
  padding: 25px;

  background: var(--light);

  border:
    1px solid var(--line);

  border-radius: var(--radius);
}

.wit-page .turneffe-wildlife-item span {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wit-page .turneffe-wildlife-item strong {
  display: block;

  margin-bottom: 10px;

  color: var(--black);

  font-size: 1rem;
}

.wit-page .turneffe-wildlife-item p {
  margin: 0;

  color: var(--gray);

  font-size: 0.82rem;
  line-height: 1.6;
}

.wit-page .wildlife-note {
  margin-top: 20px;

  color: var(--gray);

  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   OFFSHORE BOAT SECTION

   Add extra spacing before and after the feature grid.
   --------------------------------------------------------- */

.wit-page .offshore-boat-grid {
  margin-top: 32px;
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   BPDC PERK
   --------------------------------------------------------- */

.wit-page .bpdc-perk-notice {
  margin-top: 0;
  padding: 34px;
}

.wit-page .bpdc-perk-notice h2 {
  margin-top: 8px;
  margin-bottom: 12px;
}


/* ---------------------------------------------------------
   PRIVATE EXPERIENCE
   --------------------------------------------------------- */

.wit-page .private-dive-card {
  margin-top: 0;
}

.wit-page .private-dive-card h2 {
  margin-top: 8px;
  margin-bottom: 12px;
}


/* =========================================================
   FAQ SECTION
   ========================================================= */

.wit-page .activity-faq-section {
  margin-top: 12px;
}

.wit-page .activity-faq-section > .eyebrow {
  display: block;

  margin-bottom: 10px;
}

.wit-page .activity-faq-section > h2 {
  margin:
    0
    0
    30px;

  max-width: 850px;
}

.wit-page .activity-faq-list {
  display: grid;

  gap: 12px;
}

.wit-page .activity-faq-item {
  background: var(--white);

  border:
    1px solid var(--line);

  border-radius: 14px;

  overflow: hidden;
}

.wit-page .activity-faq-item summary {
  position: relative;

  padding:
    21px
    54px
    21px
    22px;

  color: var(--black);

  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.45;

  cursor: pointer;

  list-style: none;
}

.wit-page .activity-faq-item summary::-webkit-details-marker {
  display: none;
}

.wit-page .activity-faq-item summary::after {
  content: "+";

  position: absolute;

  right: 22px;
  top: 50%;

  transform:
    translateY(-50%);

  color: var(--red);

  font-size: 1.35rem;
  font-weight: 700;
}

.wit-page .activity-faq-item[open] summary::after {
  content: "–";
}

.wit-page .activity-faq-item[open] summary {
  border-bottom:
    1px solid var(--line);
}

.wit-page .activity-faq-answer {
  padding:
    20px
    22px
    22px;
}

.wit-page .activity-faq-answer p {
  max-width: 760px;

  margin: 0;

  color: var(--gray);

  font-size: 0.86rem;
  line-height: 1.7;
}


/* =========================================================
   RELATED DIVING
   ========================================================= */

.wit-page .wit-related-section {
  margin-top: 105px;
  margin-bottom: 30px;
}

.wit-page .related-dive-section > .eyebrow {
  display: block;

  margin-bottom: 10px;
}

.wit-page .related-dive-section > h2 {
  max-width: 850px;

  margin:
    0
    0
    32px;
}

.wit-page .related-dive-links {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;
}

.wit-page .related-dive-links a {
  display: flex;
  flex-direction: column;

  gap: 12px;

  min-height: 165px;

  padding: 25px;

  background: var(--light);

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.wit-page .related-dive-links a:hover {
  transform:
    translateY(-3px);

  border-color:
    rgba(0, 0, 0, 0.18);

  box-shadow:
    0 12px 26px
    rgba(0, 0, 0, 0.06);
}

.wit-page .related-dive-links strong {
  color: var(--black);

  font-size: 1rem;
  line-height: 1.4;
}

.wit-page .related-dive-links span {
  margin-top: auto;

  color: var(--red);

  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.5;
}


/* ---------------------------------------------------------
   ANCHOR POSITIONING

   Helps headings stop below the sticky navigation when
   reached through an in-page link.
   --------------------------------------------------------- */

.wit-page section[id],
.wit-page [id] {
  scroll-margin-top: 130px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .wit-page .wit-content-section {
    margin-bottom: 64px;
  }

  .wit-page .wit-page-intro {
    margin-bottom: 48px;
  }

  .wit-page .wit-story-panel {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .wit-page .wit-story-number {
    padding-right: 0;
    padding-bottom: 24px;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.14);
  }

  .wit-page .wit-fact-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .wit-page .wit-fact-item:nth-child(2) {
    border-right: 0;
  }

  .wit-page .wit-fact-item:nth-child(1),
  .wit-page .wit-fact-item:nth-child(2) {
    border-bottom:
      1px solid var(--line);
  }

  .wit-page .turneffe-wildlife-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .wit-page .related-dive-links {
    grid-template-columns: 1fr;
  }

  .wit-page .related-dive-links a {
    min-height: 130px;
  }

  .wit-page .wit-related-section {
    margin-top: 88px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .wit-page .wit-content-section {
    margin-bottom: 54px;
  }

  .wit-page .wit-page-intro {
    margin-bottom: 42px;
  }

  .wit-page .wit-story-panel {
    padding: 28px 23px;
  }

  .wit-page .wit-fact-grid {
    grid-template-columns: 1fr;
  }

  .wit-page .wit-fact-item {
    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }

  .wit-page .wit-fact-item:last-child {
    border-bottom: 0;
  }

  .wit-page .turneffe-wildlife-grid {
    grid-template-columns: 1fr;
  }

  .wit-page .turneffe-wildlife-item {
    padding: 22px 20px;
  }

  .wit-page .bpdc-perk-notice {
    padding: 28px 23px;
  }

  .wit-page .activity-faq-item summary {
    padding:
      19px
      50px
      19px
      19px;
  }

  .wit-page .activity-faq-answer {
    padding:
      18px
      19px
      20px;
  }

  .wit-page .wit-related-section {
    margin-top: 76px;
  }

  .wit-page .related-dive-section > h2 {
    margin-bottom: 24px;
  }

  .wit-page .related-dive-links a {
    min-height: 120px;

    padding: 22px;
  }

}

/* =========================================================
   SCUBA DIVE PACKAGES
   ========================================================= */


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.packages-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 8, 14, 0.92) 0%,
      rgba(4, 20, 32, 0.72) 45%,
      rgba(4, 30, 42, 0.24) 82%
    ),
    url("../../images/aerial-reef.webp");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* ---------------------------------------------------------
   MAIN HEADING
   --------------------------------------------------------- */

.package-page-heading {
  max-width: 850px;

  margin-bottom: 52px;
}

.package-page-heading h2 {
  margin: 8px 0 18px;
}

.package-page-heading .lead {
  margin: 0;
}


/* ---------------------------------------------------------
   BLACKOUT NOTICE
   --------------------------------------------------------- */

.package-blackout-notice {
  display: grid;

  grid-template-columns:
    minmax(160px, 0.3fr)
    minmax(0, 1fr);

  gap: 36px;

  align-items: center;

  margin-bottom: 70px;
  padding: 34px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.package-blackout-date {
  padding-right: 32px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.15);
}

.package-blackout-date span {
  display: block;

  margin-bottom: 10px;

  color: var(--red);

  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-blackout-date strong {
  display: block;

  color: var(--white);

  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.package-blackout-date small {
  display: block;

  margin-top: 8px;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-blackout-content h2 {
  margin: 0 0 12px;

  color: var(--white);

  font-size: 1.45rem;
}

.package-blackout-content p {
  margin: 0 0 9px;

  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.88rem;
  line-height: 1.65;
}

.package-blackout-content p:last-child {
  margin-bottom: 0;
}

.package-blackout-content strong {
  color: var(--white);
}


/* ---------------------------------------------------------
   PACKAGE CATEGORY NAV
   --------------------------------------------------------- */

.package-family-nav {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;

  margin-bottom: 90px;
}

.package-family-nav a {
  display: flex;
  flex-direction: column;

  min-height: 220px;

  padding: 25px;

  background: var(--light);

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.package-family-nav a:hover {
  transform:
    translateY(-3px);

  border-color:
    rgba(0, 0, 0, 0.18);

  box-shadow:
    0 12px 28px
    rgba(0, 0, 0, 0.06);
}

.package-family-nav span {
  margin-bottom: 9px;

  color: var(--red);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-family-nav strong {
  margin-bottom: 12px;

  color: var(--black);

  font-size: 1.05rem;
  line-height: 1.35;
}

.package-family-nav p {
  margin: 0 0 18px;

  color: var(--gray);

  font-size: 0.8rem;
  line-height: 1.6;
}

.package-family-nav small {
  margin-top: auto;

  color: var(--red);

  font-size: 0.76rem;
  font-weight: 900;
}


/* ---------------------------------------------------------
   PACKAGE FAMILIES
   --------------------------------------------------------- */

.package-family-section {
  position: relative;

  margin-bottom: 100px;

  padding: 38px;

  background: var(--white);

  border:
    1px solid var(--line);

  border-radius: 24px;
}

.package-family-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.65fr);

  gap: 45px;

  align-items: end;

  margin-bottom: 30px;
}

.package-family-heading h2 {
  margin: 8px 0 0;
}

.package-family-heading > p {
  margin: 0;

  color: var(--gray);

  font-size: 0.88rem;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   FEATURED PACKAGE
   --------------------------------------------------------- */

.package-family-featured {
  border:
    2px solid var(--black);
}

.package-featured-label {
  position: absolute;

  top: -14px;
  right: 28px;

  padding: 8px 14px;

  background: var(--black);

  border-radius: 999px;

  color: var(--white);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   PACKAGE TABLES
   --------------------------------------------------------- */

.package-table-wrap {
  width: 100%;

  overflow-x: auto;

  border:
    1px solid var(--line);

  border-radius: 16px;
}

.package-table {
  width: 100%;

  border-collapse: collapse;

  background: var(--white);
}

.package-table th,
.package-table td {
  padding: 18px 20px;

  text-align: left;

  border-bottom:
    1px solid var(--line);
}

.package-table thead {
  background: var(--black);
}

.package-table th {
  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-table td {
  color: var(--gray);

  font-size: 0.86rem;
}

.package-table td:first-child {
  color: var(--black);

  font-weight: 800;
}

.package-table td:last-child strong {
  color: var(--black);

  font-size: 0.95rem;
}

.package-table tbody tr:last-child td {
  border-bottom: 0;
}

.package-table tbody tr:hover {
  background: var(--light);
}


/* ---------------------------------------------------------
   OFFSHORE NOTES
   --------------------------------------------------------- */

.package-offshore-note {
  display: grid;

  grid-template-columns:
    150px 1fr;

  gap: 22px;

  margin-top: 22px;
  padding: 20px 22px;

  background: var(--light);

  border-radius: 13px;
}

.package-offshore-note strong {
  color: var(--black);

  font-size: 0.79rem;
}

.package-offshore-note p {
  margin: 0;

  color: var(--gray);

  font-size: 0.78rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   RELATED LINKS
   --------------------------------------------------------- */

.package-related-link {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 25px;

  margin-top: 25px;
}

.package-related-link p {
  margin: 0;

  color: var(--gray);

  font-size: 0.8rem;
}

.package-related-link a,
.package-dual-links a {
  color: var(--red);

  font-size: 0.78rem;
  font-weight: 900;

  text-decoration: none;
}

.package-dual-links {
  display: flex;

  flex-wrap: wrap;

  gap: 25px;

  margin-top: 25px;
}


/* ---------------------------------------------------------
   GENERAL SECTION HEADINGS
   --------------------------------------------------------- */

.package-section-heading {
  max-width: 760px;

  margin-bottom: 32px;
}

.package-section-heading h2 {
  margin: 8px 0 13px;
}

.package-section-heading p {
  margin: 0;

  color: var(--gray);

  line-height: 1.65;
}


/* ---------------------------------------------------------
   PACKAGE ADD-ONS
   --------------------------------------------------------- */

.package-addons-section {
  margin-bottom: 105px;
}

.package-addon-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;
}

.package-addon-card {
  display: flex;
  flex-direction: column;

  min-height: 315px;

  padding: 26px;

  background: var(--black);

  border-radius: var(--radius);

  color: var(--white);
}

.package-addon-card > span {
  margin-bottom: 8px;

  color: var(--red);

  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-addon-card h3 {
  margin: 0 0 18px;

  color: var(--white);

  font-size: 1.05rem;
}

.package-addon-price {
  margin-bottom: 18px;

  color: var(--white);

  font-size: 2rem;
  font-weight: 900;
}

.package-addon-price small {
  display: block;

  margin-top: 5px;

  color:
    rgba(255, 255, 255, 0.48);

  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-addon-card p {
  margin: 0 0 18px;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 0.8rem;
  line-height: 1.6;
}

.package-addon-total {
  display: block;

  margin-top: auto;

  color: var(--white);

  font-size: 0.73rem;
  line-height: 1.5;
}

.package-addon-card a {
  margin-top: 16px;

  color: var(--red);

  font-size: 0.72rem;
  font-weight: 900;

  text-decoration: none;
}


/* ---------------------------------------------------------
   TERMS
   --------------------------------------------------------- */

.package-terms-section {
  margin-bottom: 105px;
}

.package-terms-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;
}

.package-terms-grid article {
  padding: 25px;

  background: var(--light);

  border:
    1px solid var(--line);

  border-radius: var(--radius);
}

.package-terms-grid article > span {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-terms-grid h3 {
  margin: 0 0 10px;

  color: var(--black);

  font-size: 1rem;
}

.package-terms-grid p {
  margin: 0;

  color: var(--gray);

  font-size: 0.8rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   BUILD MY DIVE PLAN
   --------------------------------------------------------- */

.package-plan-cta {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 45px;

  align-items: center;

  margin-bottom: 110px;
  padding: 42px;

  background: var(--black);

  border-radius: 24px;

  color: var(--white);
}

.package-plan-cta h2 {
  margin: 8px 0 13px;

  color: var(--white);
}

.package-plan-cta p {
  max-width: 690px;

  margin: 0 0 12px;

  color:
    rgba(255, 255, 255, 0.7);

  line-height: 1.65;
}

.package-plan-cta p strong {
  color: var(--white);
}

.package-plan-cta small {
  color:
    rgba(255, 255, 255, 0.45);

  font-size: 0.7rem;
  line-height: 1.5;
}


/* ---------------------------------------------------------
   FAQ + RELATED SPACING
   --------------------------------------------------------- */

.packages-page .package-faq-section {
  margin-bottom: 0;
}

.packages-page .package-related-section {
  margin-top: 105px;
}


/* ---------------------------------------------------------
   ANCHOR OFFSET FOR STICKY NAVIGATION
   --------------------------------------------------------- */

.packages-page [id] {
  scroll-margin-top: 130px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .package-family-nav {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .package-family-heading {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .package-addon-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .package-terms-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .package-plan-cta {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .package-page-heading {
    margin-bottom: 40px;
  }

  .package-blackout-notice {
    grid-template-columns: 1fr;

    gap: 24px;

    padding: 28px 23px;

    margin-bottom: 55px;
  }

  .package-blackout-date {
    padding-right: 0;
    padding-bottom: 22px;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.15);
  }

  .package-family-nav {
    grid-template-columns: 1fr;

    margin-bottom: 70px;
  }

  .package-family-nav a {
    min-height: 175px;
  }

  .package-family-section {
    margin-bottom: 75px;

    padding: 27px 20px;
  }

  .package-featured-label {
    right: 18px;
  }

  .package-table {
    min-width: 570px;
  }

  .package-table th,
  .package-table td {
    padding: 16px;
  }

  .package-offshore-note {
    grid-template-columns: 1fr;

    gap: 7px;
  }

  .package-related-link {
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
  }

  .package-addon-grid {
    grid-template-columns: 1fr;
  }

  .package-addon-card {
    min-height: 280px;
  }

  .package-terms-grid {
    grid-template-columns: 1fr;
  }

  .package-addons-section,
  .package-terms-section {
    margin-bottom: 80px;
  }

  .package-plan-cta {
    margin-bottom: 85px;

    padding: 30px 23px;
  }

  .packages-page .package-related-section {
    margin-top: 80px;
  }

}

/* =========================================================
   PACKAGE FAMILY IMAGES
   ========================================================= */


/* ---------------------------------------------------------
   PACKAGE CARD WITH IMAGE
   --------------------------------------------------------- */

.packages-page .package-family-with-media {
  padding: 0;

  overflow: hidden;
}


/* ---------------------------------------------------------
   PACKAGE CONTENT BELOW IMAGE
   --------------------------------------------------------- */

.packages-page .package-family-body {
  padding: 38px;
}


/* ---------------------------------------------------------
   SINGLE PACKAGE IMAGE
   --------------------------------------------------------- */

.packages-page .package-family-media {
  position: relative;

  width: 100%;

  margin: 0;

  aspect-ratio: 16 / 7;

  overflow: hidden;

  background: var(--black);
}


.packages-page .package-family-media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/* DARK GRADIENT FOR TEXT READABILITY */

.packages-page .package-family-media::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.20) 42%,
      rgba(0, 0, 0, 0.05) 70%
    );

  pointer-events: none;
}


/* ---------------------------------------------------------
   IMAGE LABEL
   --------------------------------------------------------- */

.packages-page .package-family-media-caption {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 26px;

  z-index: 2;

  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 20px;
}


.packages-page .package-family-media-caption span {
  color:
    rgba(255, 255, 255, 0.72);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


.packages-page .package-family-media-caption strong {
  color: var(--white);

  font-size: 1rem;
  font-weight: 900;

  text-align: right;
}


/* =========================================================
   BLUE HOLE + TURNEFFE SPLIT IMAGE
   ========================================================= */

.packages-page .package-family-split-media {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  min-height: 330px;

  background: var(--black);
}


.packages-page .package-split-image {
  position: relative;

  min-width: 0;

  margin: 0;

  overflow: hidden;
}


.packages-page .package-split-image:first-child {
  border-right:
    1px solid
    rgba(255, 255, 255, 0.35);
}


.packages-page .package-split-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


.packages-page .package-split-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.12) 58%
    );

  pointer-events: none;
}


.packages-page .package-split-image figcaption {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 25px;

  z-index: 2;
}


.packages-page .package-split-image figcaption span {
  display: block;

  margin-bottom: 5px;

  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.packages-page .package-split-image figcaption strong {
  color: var(--white);

  font-size: 1.08rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .packages-page .package-family-media {
    aspect-ratio: 16 / 8;
  }

  .packages-page .package-family-body {
    padding: 32px;
  }

  .packages-page .package-family-split-media {
    min-height: 290px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  /*
    Taller image on mobile so the photograph remains
    meaningful instead of becoming a very thin banner.
  */

  .packages-page .package-family-media {
    aspect-ratio: 16 / 10;
  }


  .packages-page .package-family-body {
    padding:
      28px
      20px;
  }


  .packages-page .package-family-media-caption {
    left: 20px;
    right: 20px;
    bottom: 19px;

    flex-direction: column;
    align-items: flex-start;

    gap: 5px;
  }


  .packages-page .package-family-media-caption strong {
    text-align: left;
  }


  /* COMBINATION PACKAGE */

  .packages-page .package-family-split-media {
    grid-template-columns: 1fr;

    min-height: 0;
  }


  .packages-page .package-split-image {
    aspect-ratio: 16 / 9;
  }


  .packages-page .package-split-image:first-child {
    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.35);
  }


  .packages-page .package-split-image figcaption {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }

}
/* =========================================================
   PACKAGE PAGE — TOP SECTION LAYOUT FIX
   ========================================================= */


/* ---------------------------------------------------------
   PREVENT PACKAGE INTRO FROM EVER BECOMING STICKY
   --------------------------------------------------------- */

.packages-page .package-page-heading {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  inset: auto !important;

  width: auto !important;
  max-width: 850px;

  transform: none !important;

  margin-bottom: 52px;
}


/* ---------------------------------------------------------
   GIVE ANCHOR LINKS MORE ROOM BELOW STICKY HEADER

   This fixes the Compare Packages button jumping too far
   underneath the navigation.
   --------------------------------------------------------- */

.packages-page #compare-packages,
.packages-page #local-packages,
.packages-page #blue-hole-packages,
.packages-page #turneffe-packages,
.packages-page #combo-packages {
  scroll-margin-top: 180px;
}


/* =========================================================
   BLACKOUT NOTICE — COMPLETE RESET
   ========================================================= */

.packages-page .package-blackout-notice {
  position: relative !important;

  display: grid !important;

  grid-template-columns:
    minmax(180px, 0.28fr)
    minmax(0, 1fr) !important;

  gap: 38px;

  align-items: center;

  width: 100%;

  margin:
    0
    0
    70px;

  padding: 36px 40px;

  background: var(--black);

  border-radius: 24px;

  overflow: hidden;

  color: var(--white);
}


/* ---------------------------------------------------------
   RESET BOTH CHILDREN

   This is the important part fixing the floating /
   overlapping right-hand section.
   --------------------------------------------------------- */

.packages-page .package-blackout-date,
.packages-page .package-blackout-content {
  position: static !important;

  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  inset: auto !important;

  width: auto !important;
  height: auto !important;
  max-width: none !important;

  margin: 0 !important;

  transform: none !important;

  background: transparent !important;

  border-radius: 0 !important;

  box-shadow: none !important;
}


/* ---------------------------------------------------------
   DATE SIDE
   --------------------------------------------------------- */

.packages-page .package-blackout-date {
  display: block;

  padding:
    4px
    36px
    4px
    0;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.16);
}


.packages-page .package-blackout-date span {
  display: block;

  margin-bottom: 10px;

  color: var(--red);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.packages-page .package-blackout-date strong {
  display: block;

  margin: 0;

  color: var(--white);

  font-size:
    clamp(
      2.3rem,
      4vw,
      3.4rem
    );

  font-weight: 900;
  line-height: 0.95;
}


.packages-page .package-blackout-date small {
  display: block;

  margin-top: 10px;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   BLACKOUT MESSAGE SIDE
   --------------------------------------------------------- */

.packages-page .package-blackout-content {
  display: block !important;

  align-self: center;
}


.packages-page .package-blackout-content h2 {
  position: static !important;

  width: auto !important;
  max-width: 760px !important;

  margin:
    0
    0
    14px !important;

  padding: 0 !important;

  color: var(--white) !important;

  font-size:
    clamp(
      1.15rem,
      2vw,
      1.5rem
    ) !important;

  font-weight: 800;

  line-height: 1.3 !important;

  text-align: left !important;

  transform: none !important;
}


.packages-page .package-blackout-content p {
  max-width: 820px;

  margin:
    0
    0
    9px;

  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.86rem;
  line-height: 1.65;
}


.packages-page .package-blackout-content p:last-child {
  margin-bottom: 0;
}


.packages-page .package-blackout-content strong {
  color: var(--white);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .packages-page .package-blackout-notice {
    grid-template-columns:
      minmax(150px, 0.32fr)
      minmax(0, 1fr);

    gap: 28px;

    padding: 32px;
  }

  .packages-page .package-blackout-date {
    padding-right: 28px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .packages-page #compare-packages,
  .packages-page #local-packages,
  .packages-page #blue-hole-packages,
  .packages-page #turneffe-packages,
  .packages-page #combo-packages {
    scroll-margin-top: 120px;
  }


  .packages-page .package-page-heading {
    margin-bottom: 40px;
  }


  .packages-page .package-blackout-notice {
    grid-template-columns: 1fr !important;

    gap: 24px;

    margin-bottom: 55px;

    padding:
      28px
      23px;

    border-radius: 20px;
  }


  .packages-page .package-blackout-date {
    padding:
      0
      0
      23px;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.16);
  }


  .packages-page .package-blackout-date strong {
    font-size: 2.6rem;
  }


  .packages-page .package-blackout-content h2 {
    font-size: 1.2rem !important;
  }

}

/* Modern BPDC quick-facts cards */
.activity-quick-section{padding:30px 0;background:radial-gradient(circle at 12% 0%,rgba(215,25,32,.2),transparent 34%),linear-gradient(135deg,#0d0d0f 0%,#18181c 100%)}
.activity-quick-grid{counter-reset:quick-fact;gap:12px}
.activity-quick-item{counter-increment:quick-fact;min-width:0;padding:22px 18px;overflow:hidden;border:1px solid rgba(255,255,255,.12)!important;border-radius:16px;background:rgba(255,255,255,.055);box-shadow:inset 0 1px rgba(255,255,255,.06);transition:transform .25s ease,border-color .25s ease,background .25s ease}
.activity-quick-item::before{content:counter(quick-fact,decimal-leading-zero);display:grid;width:32px;height:32px;margin-bottom:20px;place-items:center;border-radius:10px;background:var(--red);color:var(--white);font-size:.68rem;font-weight:900;letter-spacing:.04em;box-shadow:0 8px 20px rgba(215,25,32,.3)}
.activity-quick-item:hover{transform:translateY(-4px);border-color:rgba(215,25,32,.65)!important;background:rgba(255,255,255,.085)}
.activity-quick-item span{min-height:2.5em;margin-bottom:9px;color:rgba(255,255,255,.58);font-size:.66rem;line-height:1.25;letter-spacing:.12em}
.activity-quick-item strong{color:var(--white);font-size:clamp(.92rem,1.25vw,1.08rem);line-height:1.35;letter-spacing:-.01em}
@media(max-width:960px){.activity-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.activity-quick-item:nth-child(n){border-top:1px solid rgba(255,255,255,.12)}}
@media(max-width:520px){.activity-quick-section{padding:20px 0}.activity-quick-grid{grid-template-columns:1fr;gap:10px}.activity-quick-item{display:grid;grid-template-columns:38px minmax(0,1fr);column-gap:14px;padding:17px}.activity-quick-item::before{grid-row:1/span 2;width:38px;height:38px;margin:0;align-self:center}.activity-quick-item span{min-height:0;margin:0 0 3px}.activity-quick-item strong{grid-column:2}}
