/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--yellow-accent) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: subtleGradient 15s infinite alternate;
  z-index: 1;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta .cta-button {
  background-color: var(--white);
  color: var(--dark-bg);
  border: 2px solid var(--white);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: subtleGlow 3s ease-in-out infinite;
}

.final-cta .cta-button:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  animation: none;
}

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

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

.footer .container {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--yellow-accent);
  text-shadow: 0 0 5px rgba(250, 195, 17, 0.5);
  transform: translateX(5px);
}
