/* summer-camp.css */

/* ===================================
   SUMMER CAMP HERO
   =================================== */
.camp-hero {
  height: 100vh;
  position: relative;
  color: var(--light-text);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  min-height: 600px;
}

.camp-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: -2;
  filter: saturate(1.4) brightness(0.9) contrast(1.1);
}

.camp-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.7) 30%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(25, 90, 159, 0.2) 0%,
      rgba(25, 90, 159, 0.1) 100%
    ),
    rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.camp-hero .hero-content {
  max-width: 800px;
  padding: 0 2rem;
  margin-top: 4rem;
  margin-left: 5%;
  text-align: left;
}

.camp-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.camp-hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.camp-hero h2::after {
  display: none;
}

.camp-hero .hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .camp-hero {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    padding-top: 11rem;
  }

  .camp-hero .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.7) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(25, 90, 159, 0.25) 0%,
        rgba(25, 90, 159, 0.15) 100%
      ),
      rgba(0, 0, 0, 0.2);
  }

  .camp-hero .hero-content {
    margin-left: 0;
    margin-top: 2rem;
    text-align: center;
  }

  .camp-hero h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .camp-hero h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .camp-hero .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .camp-hero .hero-buttons {
    flex-direction: column;
  }

  .camp-hero .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .camp-hero h1 {
    font-size: 2rem;
  }

  .camp-hero h2 {
    font-size: 1.1rem;
  }
}

/* ===================================
   QUICK FACTS BAR
   =================================== */
.quick-facts {
  background: linear-gradient(180deg, #1e2f72 0%, var(--primary-color) 100%);
  padding: 4rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.quick-facts::before,
.quick-facts::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(144, 194, 231, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.quick-facts::before {
  top: -8rem;
  left: -6rem;
}
.quick-facts::after {
  bottom: -10rem;
  right: -6rem;
  background: radial-gradient(
    circle,
    rgba(207, 174, 57, 0.12) 0%,
    transparent 70%
  );
}

.quick-facts-header {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.quick-facts-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(207, 174, 57, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quick-facts-header h2 {
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0;
  text-align: center;
}

.quick-facts-header h2::after {
  display: none;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.quick-fact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
  min-width: 0;
}

.quick-fact:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--fact-color, var(--accent-color));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.quick-fact-icon {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--fact-color, #cfae39) 22%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.quick-fact:hover .quick-fact-icon {
  transform: rotate(-6deg) scale(1.05);
}

.quick-fact-icon i {
  font-size: 1.2rem;
  color: var(--fact-color, var(--accent-color));
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.quick-fact-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.quick-fact .fact-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.quick-fact .fact-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

@media (max-width: 992px) {
  .quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .quick-facts {
    padding: 3rem 1rem 3.5rem;
  }
  .quick-facts-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .quick-fact {
    padding: 0.9rem 1rem;
  }
  .quick-fact .fact-value {
    font-size: 0.95rem;
  }

  .quick-fact i {
    font-size: 1.5rem;
  }
}

/* ===================================
   PROGRAM OVERVIEW
   =================================== */
.program-overview {
  background-color: var(--dark-bg);
  padding: 5rem 0;
}

.program-overview h2 {
  text-align: center;
}

.overview-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.overview-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.overview-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.overview-photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.overview-photo-strip img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .overview-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-photo-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .overview-photo-strip img {
    height: 200px;
  }
}

/* ===================================
   WATERCRAFT FLEET
   =================================== */
.fleet-section {
  background-color: var(--darker-bg);
  padding: 5rem 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-card {
  background-color: rgba(25, 90, 159, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.fleet-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.fleet-card h3 {
  text-align: center;
  padding: 1rem;
  margin: 0;
  font-size: 1.2rem;
  color: var(--light-text);
}

@media (max-width: 992px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card img {
    height: 200px;
  }
}

/* ===================================
   PRICING TABLE
   =================================== */
.pricing-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(207, 174, 57, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(144, 194, 231, 0.22) 0%, transparent 45%),
    linear-gradient(135deg, #1a2a6c 0%, var(--main-color, #283e94) 55%, #0f1a4d 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 75%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.pricing-section > .container {
  position: relative;
  z-index: 1;
}

.pricing-section h2 {
  color: #fff;
}

.pricing-section h2::after {
  background: var(--accent-color);
}

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0 auto 2.5rem;
  max-width: 580px;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-tier {
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(207, 174, 57, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(144, 194, 231, 0.16) 0%, transparent 55%),
    linear-gradient(135deg, #1a2a6c 0%, var(--main-color, #283e94) 55%, #0f1a4d 100%);
  border-radius: 1.25rem;
  padding: 2.25rem 1.75rem;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow:
    0 30px 60px -15px rgba(15, 26, 77, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-tier:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 80px -15px rgba(15, 26, 77, 0.65),
    0 0 0 1px rgba(207, 174, 57, 0.25) inset;
}

.pricing-tier-name {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-color);
  background: rgba(207, 174, 57, 0.15);
  border: 1px solid rgba(207, 174, 57, 0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

.pricing-tier-amount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem 0.4rem;
  font-family: "Fraunces", "Charter", Georgia, serif;
  line-height: 1;
}

.pricing-tier-currency {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-color);
}

.pricing-tier-number {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
}

.pricing-tier-unit {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  margin-left: 0.25rem;
}

.pricing-tier-schedule {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.pricing-tier-schedule i {
  color: var(--accent-color);
  font-size: 0.95rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 174, 57, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
}

@media (max-width: 900px) {
  .pricing-tiers {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pricing-tier {
    padding: 2rem 1.5rem;
  }
}

/* ===================================
   TYPICAL DAY TIMELINE
   =================================== */
.timeline-section {
  background-color: var(--darker-bg);
  padding: 5rem 0;
}

.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  /* Animate the vertical line drawing from top as the timeline scrolls into view */
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.timeline.in-view::before {
  transform: scaleY(1);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 3px solid var(--darker-bg);
  /* Dots pop in with their parent item */
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.timeline.in-view .timeline-item::before {
  transform: scale(1);
}

.timeline-time {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
}

.timeline-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-photo {
    order: -1;
  }
}

/* ===================================
   WHAT TO BRING
   =================================== */
.bring-section {
  background-color: var(--dark-bg);
  padding: 5rem 0;
}

.bring-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.bring-card {
  background-color: rgba(25, 90, 159, 0.15);
  border-radius: 8px;
  padding: 2rem;
}

.bring-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.bring-card ul {
  padding-left: 0;
}

.bring-card ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--light-text);
}

.bring-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.85rem;
}

.bring-photo img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .bring-cards {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   POLICIES & FAQ ACCORDION
   =================================== */
.faq-section {
  background-color: var(--darker-bg);
  padding: 5rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: rgba(25, 90, 159, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background-color: rgba(25, 90, 159, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-header:hover {
  background-color: rgba(25, 90, 159, 0.4);
}

.faq-header h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 1.5rem;
  transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-content {
  max-height: 500px;
  opacity: 1;
  padding: 1.5rem;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
}

/* ===================================
   PHOTO GALLERY
   =================================== */
.gallery-section {
  background-color: var(--dark-bg);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-grid img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid img {
    height: 150px;
  }
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  display: flex;
  opacity: 1;
}

.lightbox-figure {
  margin: 0;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: lightbox-zoom 0.25s ease;
}

@keyframes lightbox-zoom {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-caption {
  color: #f5f5f5;
  font-size: 0.9rem;
  text-align: center;
  max-width: 80vw;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }
  .lightbox-prev {
    left: 0.5rem;
  }
  .lightbox-next {
    right: 0.5rem;
  }
}

/* ===================================
   REGISTRATION CTA
   =================================== */
.registration-cta {
  position: relative;
  text-align: center;
  padding: 8rem 0;
  color: var(--light-text);
  overflow: hidden;
}

.registration-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.registration-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.registration-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.registration-cta h2::after {
  display: none;
}

.registration-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.registration-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .registration-cta {
    padding: 5rem 1.5rem;
  }

  .registration-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .registration-cta .cta-buttons .btn {
    width: 100%;
  }

  .registration-cta-bg {
    background-attachment: scroll;
  }
}

/* ===================================
   CROSS-SELL STRIP
   =================================== */
.cross-sell {
  background-color: var(--darker-bg);
  padding: 5rem 0;
}

.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cross-sell-card {
  background-color: rgba(25, 90, 159, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.cross-sell-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cross-sell-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.cross-sell-card h3 {
  padding: 1.25rem;
  margin: 0;
  font-size: 1.2rem;
  color: var(--light-text);
}

@media (max-width: 768px) {
  .cross-sell-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   SECTION HEADINGS OVERRIDE
   =================================== */
.camp-section-heading {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.camp-section-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================
   TIMELINE CASCADE ANIMATION
   ========================= */
.timeline-item {
  opacity: 0;
  transform: translateY(-28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}
.timeline.in-view .timeline-item {
  opacity: 1;
  transform: translateY(0);
}
.timeline.in-view .timeline-item:nth-child(1) {
  transition-delay: 0ms;
}
.timeline.in-view .timeline-item:nth-child(2) {
  transition-delay: 120ms;
}
.timeline.in-view .timeline-item:nth-child(3) {
  transition-delay: 240ms;
}
.timeline.in-view .timeline-item:nth-child(4) {
  transition-delay: 360ms;
}
.timeline.in-view .timeline-item:nth-child(5) {
  transition-delay: 480ms;
}
.timeline.in-view .timeline-item:nth-child(6) {
  transition-delay: 600ms;
}
.timeline.in-view .timeline-item:nth-child(7) {
  transition-delay: 720ms;
}
.timeline.in-view .timeline-item:nth-child(8) {
  transition-delay: 840ms;
}

/* Matching stagger for the dots — land slightly after the item arrives */
.timeline.in-view .timeline-item:nth-child(1)::before {
  transition-delay: 80ms;
}
.timeline.in-view .timeline-item:nth-child(2)::before {
  transition-delay: 200ms;
}
.timeline.in-view .timeline-item:nth-child(3)::before {
  transition-delay: 320ms;
}
.timeline.in-view .timeline-item:nth-child(4)::before {
  transition-delay: 440ms;
}
.timeline.in-view .timeline-item:nth-child(5)::before {
  transition-delay: 560ms;
}
.timeline.in-view .timeline-item:nth-child(6)::before {
  transition-delay: 680ms;
}
.timeline.in-view .timeline-item:nth-child(7)::before {
  transition-delay: 800ms;
}
.timeline.in-view .timeline-item:nth-child(8)::before {
  transition-delay: 920ms;
}

@media (prefers-reduced-motion: reduce) {
  .timeline-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
