html { 
  scroll-behavior: smooth;
}

#dock-nav {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0;
  pointer-events: none;
  max-height: calc(100vh - 240px);
  overflow: hidden;
  width: 220px;
}

.dock-item {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: #555;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  pointer-events: auto;
  padding: 8px 20px;
  border-radius: 9999px;
  opacity: 0.6;
  transform-origin: center;
  font-size: 1rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.dock-item:hover {
  color: #F05722;
  opacity: 1;
  transform: scale(1.2);
}

.dock-item.active {
  color: #F05722;
  font-weight: 700;
  opacity: 1;
  transform: scale(1.3);
}
  
@media (max-width: 1450px) {
  #dock-nav { display: none; }
  section.pt-24.pb-32.lg\:pl-32 {
    padding-left: 0 !important;
  }
}

@media (min-width: 1450px) {
  footer .grid {
    gap: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1450px) {
  footer .grid {
    gap: 1.5rem;
  }
}