/* Future Vision Section Styles */

/* Base styles */
.future-vision-sss {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: #050510;
  color: #ffffff;
}

/* Background elements */
.future-bg-elements-sss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.future-particles-sss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(76, 201, 240, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.future-grid-sss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(76, 201, 240, 0.1) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(76, 201, 240, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.future-glow-sss {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.6;
  animation: pulse-glow-sss 8s infinite alternate;
}

.holographic-elements-sss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.holo-circle-sss, .holo-square-sss, .holo-triangle-sss {
  position: absolute;
  opacity: 0.2;
  border: 1px solid rgba(76, 201, 240, 0.5);
  filter: drop-shadow(0 0 5px rgba(76, 201, 240, 0.5));
  animation: float-element-sss 15s infinite ease-in-out;
}

.holo-circle-sss {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.holo-square-sss {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  transform: rotate(45deg);
  animation-delay: 2s;
}

.holo-triangle-sss {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(76, 201, 240, 0.2);
  top: 30%;
  right: 10%;
  animation-delay: 4s;
}

/* Section header */
.section-header-sss {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  z-index: 1;
}

.section-badge-sss {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4cc9f0;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.section-badge-sss::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.3), transparent);
  animation: badge-shine-sss 3s infinite;
}

.section-header-sss h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.gradient-text-sss {
  background: linear-gradient(90deg, #4cc9f0, #f72585);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.section-subtitle-sss {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* Vision showcase */
.vision-showcase-sss {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.vision-hologram-container-sss {
  width: 40%;
  position: relative;
  height: 400px;
}

.hologram-base-sss {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: rgba(76, 201, 240, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(76, 201, 240, 0.5);
}

.base-lights-sss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.8) 0%, transparent 70%);
  animation: pulse-light-sss 2s infinite alternate;
}

.hologram-projection-sss {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hologram-projection-sss lottie-player {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.hologram-projection-sss.parallax-active {
  transform: translate(-50%, -50%) scale(1.05);
  transition: transform 0.3s ease;
}

.hologram-rays-sss {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 300px;
  opacity: 0.5;
}

.ray-sss {
  position: absolute;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to top, rgba(76, 201, 240, 0.8), transparent);
  animation: ray-pulse-sss 3s infinite alternate;
}

.ray-1-sss {
  left: 30%;
  height: 250px;
  animation-delay: 0s;
}

.ray-2-sss {
  left: 50%;
  height: 300px;
  animation-delay: 0.5s;
}

.ray-3-sss {
  left: 70%;
  height: 270px;
  animation-delay: 1s;
}

/* Vision cards */
.vision-cards-container-sss {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.vision-card-sss {
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vision-card-sss::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(76, 201, 240, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vision-card-sss:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(76, 201, 240, 0.1);
  border-color: rgba(76, 201, 240, 0.4);
}

.vision-card-sss:hover::before {
  opacity: 1;
}

.card-icon-sss {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: rgba(76, 201, 240, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  position: relative;
}

.card-icon-sss i {
  font-size: 24px;
  color: #4cc9f0;
  z-index: 1;
}

.icon-glow-sss {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(76, 201, 240, 0.2);
  border-radius: 50%;
  filter: blur(10px);
  animation: pulse-icon-sss 2s infinite alternate;
}

.card-content-sss {
  flex: 1;
}

.card-content-sss h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.card-content-sss p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.card-progress-sss {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(76, 201, 240, 0.1);
  overflow: hidden;
}

.progress-bar-sss {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #4cc9f0, #f72585);
  transition: width 0.8s ease-out;
}

.vision-card-sss:hover .progress-bar-sss {
  width: 100%;
}

/* Future roadmap */
.future-roadmap-sss {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.roadmap-header-sss {
  text-align: center;
  margin-bottom: 40px;
}

.roadmap-header-sss h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.roadmap-header-sss p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.roadmap-timeline-sss {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.roadmap-timeline-sss::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(76, 201, 240, 0.1),
    rgba(76, 201, 240, 0.5),
    rgba(76, 201, 240, 0.1)
  );
}

.timeline-node-sss {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.timeline-node-sss:last-child {
  margin-bottom: 0;
}

.node-dot-sss {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #4cc9f0;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(76, 201, 240, 0.2), 0 0 20px rgba(76, 201, 240, 0.4);
}

.node-dot-sss::before {
  content: attr(data-year);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
  color: #4cc9f0;
}

.node-content-sss {
  width: 40%;
  padding: 25px;
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: 12px;
  position: relative;
  margin-top: 30px;
}

.timeline-node-sss:nth-child(odd) .node-content-sss {
  margin-right: 50%;
  margin-left: 30px;
}

.timeline-node-sss:nth-child(even) .node-content-sss {
  margin-left: 50%;
  margin-right: 30px;
}

.node-content-sss h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.node-content-sss p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Future CTA */
.future-cta-sss {
  position: relative;
  z-index: 1;
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: 16px;
  padding: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.future-cta-sss::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(76, 201, 240, 0.05), transparent);
  animation: cta-shine-sss 3s infinite;
}

.cta-hologram-sss {
  width: 150px;
  height: 150px;
  position: relative;
  margin-right: 0;
  margin-bottom: 30px;
}

.cta-hologram-sss::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  background: rgba(76, 201, 240, 0.3);
  border-radius: 50%;
  filter: blur(5px);
}

.hologram-content-sss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float-hologram-sss 4s infinite ease-in-out;
}

.hologram-content-sss i {
  font-size: 60px;
  color: rgba(76, 201, 240, 0.8);
  filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.8));
}

.cta-content-sss {
  flex: 1;
  text-align: center;
}

.cta-content-sss h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.highlight-text-sss {
  color: #4cc9f0;
  position: relative;
}

.highlight-text-sss::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4cc9f0, transparent);
}

.cta-content-sss p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  max-width: 600px;
}

.neo-btn-sss {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: 30px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neo-btn-sss span {
  margin-right: 10px;
  z-index: 1;
}

.neo-btn-sss i {
  font-size: 14px;
  z-index: 1;
}

.btn-glow-sss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(76, 201, 240, 0.1), rgba(247, 37, 133, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.neo-btn-sss:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(76, 201, 240, 0.2);
  border-color: rgba(76, 201, 240, 0.5);
}

.neo-btn-sss:hover .btn-glow-sss {
  opacity: 1;
}

/* Animations */
@keyframes pulse-glow-sss {
  0% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes float-element-sss {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes badge-shine-sss {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

@keyframes pulse-light-sss {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

@keyframes ray-pulse-sss {
  0% {
    height: 80%;
    opacity: 0.3;
  }
  100% {
    height: 100%;
    opacity: 0.6;
  }
}

@keyframes pulse-icon-sss {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes cta-shine-sss {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes float-hologram-sss {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .vision-showcase-sss {
    flex-direction: column;
  }
  
  .vision-hologram-container-sss,
  .vision-cards-container-sss {
    width: 100%;
  }
  
  .vision-hologram-container-sss {
    margin-bottom: 50px;
    height: 350px;
  }
  
  .roadmap-timeline-sss::before {
    left: 30px;
  }
  
  .timeline-node-sss {
    justify-content: flex-start;
  }
  
  .node-dot-sss {
    left: 30px;
  }
  
  .timeline-node-sss:nth-child(odd) .node-content-sss,
  .timeline-node-sss:nth-child(even) .node-content-sss {
    width: calc(100% - 80px);
    margin-left: 80px;
    margin-right: 0;
  }
  
  .future-cta-sss {
    flex-direction: column;
    padding: 30px;
  }
  
  .cta-hologram-sss {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .future-vision-sss {
    padding: 80px 0;
  }
  
  .section-header-sss h2 {
    font-size: 32px;
  }
  
  .section-subtitle-sss {
    font-size: 16px;
  }
  
  .vision-card-sss {
    padding: 20px;
  }
  
  .card-icon-sss {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .card-icon-sss i {
    font-size: 20px;
  }
  
  .card-content-sss h3 {
    font-size: 18px;
  }
  
  .card-content-sss p {
    font-size: 14px;
  }
  
  .roadmap-header-sss h3 {
    font-size: 28px;
  }
  
  .node-content-sss {
    padding: 20px;
  }
  
  .cta-content-sss h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .future-vision-sss {
    padding: 60px 0;
  }
  
  .section-header-sss h2 {
    font-size: 28px;
  }
  
  .vision-hologram-container-sss {
    height: 300px;
  }
  
  .hologram-projection-sss {
    width: 250px;
    height: 250px;
  }
  
  .timeline-node-sss:nth-child(odd) .node-content-sss,
  .timeline-node-sss:nth-child(even) .node-content-sss {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  
  .node-dot-sss {
    width: 16px;
    height: 16px;
  }
  
  .cta-content-sss h3 {
    font-size: 22px;
  }
  
  .neo-btn-sss {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .future-glow-sss,
  .holo-circle-sss,
  .holo-square-sss,
  .holo-triangle-sss,
  .base-lights-sss,
  .ray-sss,
  .icon-glow-sss,
  .hologram-content-sss {
    animation: none;
  }
  
  .section-badge-sss::before {
    display: none;
  }
  
  .vision-card-sss:hover {
    transform: none;
  }
  
  .neo-btn-sss:hover {
    transform: none;
  }
}