/* Side Navigation Dots */
.side-nav-dots {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.side-nav-dots.show {
    opacity: 1;
    visibility: visible;
}

.dot-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot-label {
    position: absolute;
    left: 25px;
    background: #ecad29;
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    white-space: nowrap;
}

.dot-item:hover .dot {
    background: #ecad29;
    transform: scale(1.3);
}

.dot-item:hover .dot-label,
.dot-item.active .dot-label {
    opacity: 1;
    transform: translateX(0);
}

.dot-item.active .dot {
    background: #ecad29;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(236, 173, 41, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    background: #ecad29;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(236, 173, 41, 0.5);
}

.back-to-top i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .side-nav-dots {
        display: none;
        /* Hide on smaller screens for cleaner UI */
    }
}