/* Animated Get Started Button */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 50px;
  border: 4px solid;
  border-color: transparent;
  font-size: 14px;
  background-color: #ffffff;
  border-radius: 100px;
  font-weight: 600;
  color: #1f387e;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  min-width: 160px;
}

.animated-button svg {
  position: absolute;
  width: 20px;
  fill: #1f387e;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -50%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #c5e5e4;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 10;
  transform: translateX(15px) !important;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
  margin-left: 10px;
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -35%;
}

.animated-button:hover .arr-2 {
  left: 8px;
}

.animated-button:hover .text {
  transform: translateX(20px);
}

.animated-button:hover svg {
  fill: #1f387e;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* Navigation integration */
.nav-cta.animated-button {
  margin-left: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .animated-button {
    padding: 10px 24px;
    font-size: 12px;
    gap: 8px;
    min-width: 130px;
  }
  
  .animated-button svg {
    width: 16px;
  }
  
  .animated-button .text {
    transform: translateX(0px);
  }
  
  .animated-button:hover .text {
    transform: translateX(8px);
  }
  
  .animated-button .arr-1 {
    right: 12px;
  }
  
  .animated-button .arr-2 {
    left: -35%;
  }
  
  .animated-button:hover .arr-1 {
    right: -30%;
  }
  
  .animated-button:hover .arr-2 {
    left: 15px;
  }
  
  .nav-cta.animated-button {
    margin: 1rem auto;
    display: block;
    width: fit-content;
  }
}