/* Section Navigation Indicator */
.section-nav {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px 0;
}

.section-nav-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(245,245,245);
  border: 2px solid rgb(225,225,225);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.section-nav-tooltip {
  position: absolute;
  right: 45px;
  white-space: nowrap;
  background: rgba(26, 26, 46, 0.95);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-nav-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(26, 26, 46, 0.95);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.section-nav-dot:hover .section-nav-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.section-nav-dot.active {
  background: rgba(191, 158, 79, 0.7);
  border-color: rgba(139, 115, 57, 0.7);
 /* transform: scale(1.1); */
}
.section-nav-dot.active .section-nav-number {
  color: rgba(255, 255, 255, 1);
}

.section-nav-dot:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.section-nav-number {
  font-size: 12px;
  font-weight: 700;
  color: rgba(185, 185, 185, 0.6);
  transition: color 0.3s ease;
}

.section-nav-dot:hover .section-nav-number {
  color: rgba(255, 255, 255, 0.9);
}

/* Active state */
.section-nav-dot[data-active="true"] {
  background: rgba(255, 255, 255, 0.95);
  border-color: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.section-nav-dot[data-active="true"] .section-nav-number {
  color: #1a1a2e;
  font-weight: 900;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-nav {
    right: 12px;
    gap: 12px;
  }
  
  .section-nav-dot {
    width: 28px;
    height: 28px;
  }
  
  .section-nav-number {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .section-nav {
    right: 8px;
    gap: 10px;
  }
  
  .section-nav-dot {
    width: 24px;
    height: 24px;
  }
  
  .section-nav-number {
    font-size: 10px;
  }
}
