/* Future Vision section styling */
.vision-section {
  position: relative;
  background: linear-gradient(to bottom, #0f172a, #111827);
  padding: 6rem 0;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.vision-slider {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.vision-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vision-slide.active {
  display: block;
  opacity: 1;
}

.vision-card {
  position: relative;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
}

.vision-card::before {
  content: "\2605"; /* Star Unicode */
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 215, 0, 0.1);
  z-index: 0;
}

.vision-content {
  position: relative;
  z-index: 1;
}

.vision-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #f8fafc;
  margin-bottom: 2rem;
  position: relative;
}

.vision-area {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.vision-area-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.5px;
}

.vision-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.vision-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.vision-dot.active {
  background-color: #ffd700;
  transform: scale(1.2);
}

.vision-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  padding: 0 1rem;
}

.vision-arrow {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vision-arrow:hover {
  background-color: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

@media (max-width: 768px) {
  .vision-card {
    padding: 2rem;
  }

  .vision-text {
    font-size: 1rem;
  }

  .vision-arrows {
    display: none;
  }
}
