/* ... Previous styles ... */

/* --- Custom Cursor Defaults --- */
body {
    cursor: none;
}

/* Ensure all clickable elements show no cursor too */
a, button, .menu-icon, .social-icon, .menu-close-btn, .services-list li, span, nav {
    cursor: none !important; 
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Ring has standard "Ease-out" physics */
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    /* Removed 'transform' transition to avoid lag in position updates, JS handles position */
}

/* --- Hover State (Active) --- */
body.hovering .cursor-ring {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 229, 255, 0.15); 
    border-color: var(--primary-orange);
    border-width: 2px;
}

body.hovering .cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-orange);
}

/* --- RESPONSIVE: Disable on Touch Devices --- */
@media (max-width: 992px), (hover: none) {
    .cursor-dot, .cursor-ring {
        display: none !important;
    }
    
    body, a, button, .menu-icon, .social-icon, .menu-close-btn, .services-list li {
        cursor: auto !important;
    }
}
