/* ============================================
   GRADIENT TRANSITION ZONE
   A white clipping container (overflow:hidden) with
   a blurred gradient strip + black mask inside.
   Placed between white page and dark footer.
   ============================================ */
/* ============================================
   MAGIC GRADIENT TRANSITION
   ============================================ */
.magic-transition-section {
  position: relative;
  background-color: #ffffff;
  /* Matches page background */
  width: 100%;
  height: 450px;
  /* Provides scrollable space to see the gradient bloom */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  /* Allows radial gradient to bleed down into the footer */
  z-index: 1;
}

/* The Magic Radial Gradient Container */
.radial-gradient-container {
  position: absolute;
  /* Start positioned significantly below the section so it blooms up on scroll */
  bottom: -2430px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  width: 2893px;
  height: 2757px;
  overflow: visible;
  z-index: -1;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
}

.radial-gradient-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50%,
      /* Back to center-focused so the white edge wraps all the way around */
      #000000 0%,
      #000000 16%,
      /* Expanded black core as requested */
      #0d250f 32%,
      /* Pure shadow variant of your brand green */
      #173f1a 48%,
      /* Deep, rich dark forest green */
      #225d26 62%,
      /* Mid-dark green stepping up to your brand color */
      #2E7D32 75%,
      /* Your exact fixed brand green */
      #8bc38e 88%,
      /* Soft, clean fade-out tint of your brand green */
      #eef7ef 95%,
      /* Smooth boundary transition */
      #ffffff 100%);
}




/* ============================================
   CINEMATIC FOOTER — Dark Section
   ============================================ */
.cinematic-footer {
  position: relative;
  background-color: transparent;
  /* Changed from #000 so the radial gradient can be seen through */
  color: #ffffff;
  overflow: visible;
  padding-top: 5vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-top: 0;
}


/* Top Wrapper for Navigation and Editorial */
.footer-top-wrapper {
  position: relative;
  z-index: 2;
  padding: 6rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

/* Left Content */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-blurb {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: #f0f0f0;
  max-width: 600px;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-btn-pill {
  background-color: #ffffff;
  color: #000000;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-btn-pill:hover {
  transform: scale(1.05);
  background-color: #e0e0e0;
}

.footer-btn-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.footer-btn-circle:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
}

.arrow-btn {
  color: #a8e6cf;
  font-size: 1.2rem;
  border-color: rgba(168, 230, 207, 0.4);
}

.arrow-btn:hover {
  border-color: #a8e6cf;
  background-color: rgba(168, 230, 207, 0.1);
}

.lang-btn.active {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Right Content */
.footer-right {
  display: flex;
  gap: 4rem;
  justify-content: flex-end;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav-col a:hover {
  color: #ffffff;
}

/* Bottom Anchor */
.footer-bottom-anchor {
  position: relative;
  width: 100%;
  margin-top: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}


.footer-copyright {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.05em;
  pointer-events: none;
  padding: 2rem 0;
}

/* Responsive */
@media (max-width: 900px) {
  .cinematic-footer {
    padding-top: 10vh;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-right {
    justify-content: flex-start;
    gap: 3rem;
  }
}