/* CTA Buttons and Sections */

:root {
  --magenta: #FD0C5C;
  --turqoise: #13E5DA;
  --purple: #50168E;
  --container-max: 1300px;
}

.btn-primary-cta {
  background-color: var(--magenta) !important;
  color: #ffffff !important;
  font-weight: 850 !important;
  font-size: 1.2rem !important;
  padding: 16px 36px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  border: 2px solid var(--magenta) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(253, 12, 92, 0.3) !important;
}

.btn-primary-cta:hover {
  background-color: #e00b52 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(253, 12, 92, 0.4) !important;
}

.btn-secondary-cta {
  background-color: transparent !important;
  color: var(--purple) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 16px 36px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  border: 2px solid var(--purple) !important;
  text-transform: uppercase !important;
}

.btn-secondary-cta:hover {
  background-color: var(--purple) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* Pre-footer CTA Section */
.pre-footer-cta {
  background-color: var(--purple);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pre-footer-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--magenta);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.pre-footer-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pre-footer-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  text-transform: uppercase;
}

.pre-footer-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .pre-footer-cta {
    padding: 60px 15px;
  }
  
  .pre-footer-cta__buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .pre-footer-cta__buttons a {
    width: 100%;
    max-width: 400px;
  }
  
  .Hero_ctaWrap__Usv7c {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
  }
  
  .btn-primary-cta, .btn-secondary-cta {
    width: 100% !important;
    text-align: center !important;
  }
}
