
/* ─── 7. CTA OVERHAUL (Premium Contact UI) ──────────────── */

/* Remove the massive gap between Process and CTA */
#contact.cta-section {
  padding: 4rem 0 6rem; /* Tighter padding */
}
#process {
  padding-bottom: 2rem; /* Remove default 100px gap */
}

/* Base CTA Container */
.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Live Availability Stats */
.cta-stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.cta-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--text-bright);
}
.cta-stat-icon {
  font-size: 1rem;
}

/* Neon Form Journey Fields */
.neon-fields-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.neon-field-pill {
  padding: 12px 24px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.05), 0 0 15px rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}
.neon-field-pill:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.1), 0 0 25px rgba(139, 92, 246, 0.2);
  color: #fff;
}
.nft-arrow {
  color: var(--emerald);
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Orbit Wrapper & Button Pulse */
.cta-orbit-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.btn-pulse {
  animation: gentlePulse 3s infinite;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}
@keyframes gentlePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 60px rgba(139, 92, 246, 0.6), 0 0 20px rgba(16, 185, 129, 0.3); }
}

/* Live Chat Preview Floating Widget */
.live-chat-preview {
  position: absolute;
  left: -80px;
  top: -40px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
  width: 240px;
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: floatChat 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatChat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}
.chat-header {
  font-size: 0.75rem;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: blink 2s infinite;
}
.chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-top-left-radius: 2px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.4;
}
.typing-anim {
  display: inline-block;
  width: 4px;
  height: 12px;
  background: var(--emerald);
  margin-right: 6px;
  animation: blink 1s step-end infinite;
}

/* Orbiting Wins System */
.wins-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 0;
  pointer-events: none;
}
.orbit-node {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  pointer-events: auto; /* allow hover on orbit elements */
}
.orbit-node img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
}
/* The tooltip attached to each orbit node */
.orbit-tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--emerald);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.orbit-tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: var(--emerald) transparent transparent transparent;
}
.orbit-node:hover .orbit-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Individual node positioning & orbit animations */
.node-1 {
  /* Orbit radius ~180px, starting angle */
  animation: orbit1 20s linear infinite;
}
@keyframes orbit1 {
  0% { transform: rotate(0deg) translateX(180px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

.node-2 {
  /* Orbit radius ~220px, starting angle 120deg */
  animation: orbit2 25s linear infinite;
}
@keyframes orbit2 {
  0% { transform: rotate(120deg) translateX(220px) rotate(-120deg); }
  100% { transform: rotate(480deg) translateX(220px) rotate(-480deg); }
}

.node-3 {
  /* Orbit radius ~160px, starting angle 240deg */
  animation: orbit3 22s linear infinite;
}
@keyframes orbit3 {
  0% { transform: rotate(240deg) translateX(160px) rotate(-240deg); }
  100% { transform: rotate(600deg) translateX(160px) rotate(-600deg); }
}

/* Mobile Adjustments for CTA */
@media (max-width: 768px) {
  .neon-fields-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .nft-arrow {
    transform: rotate(90deg);
  }
  .live-chat-preview {
    display: none; /* Hide heavy absolute elements on mobile */
  }
  .wins-orbit {
    transform: scale(0.6); /* Scale down for mobile */
    margin-top: 20px;
  }
  .orbit-node {
    width: 36px;
    height: 36px;
  }
  .orbit-node img {
    width: 20px;
    height: 20px;
  }
}
