/* ===============================
   FUTURISTIC VIEW DETAILS CTA
================================ */

.futuristic-cta {
  padding: 6px 14px;
  border-radius: 999px;
  background: #eb75141f;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Text */
.futuristic-cta .cta-text {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #ffffff;
}

/* Arrow */
.futuristic-cta .ax-arrow {
  width: 18px;
  height: 18px;
  stroke: #fd7e14;
  stroke-width: 1.8;
  transition: transform 0.35s ease, stroke 0.35s ease;
}

/* Underline glow */
.futuristic-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #fd7e14, transparent);
  transition: width 0.4s ease;
}

/* Hover effect */
.ax-service-item:hover .futuristic-cta::after {
  width: 100%;
}

.ax-service-item:hover .futuristic-cta .ax-arrow {
  transform: translateX(6px);
  stroke: #ffb347;
}

