/* ============================================================
   ARVista Custom Cursor — Shared Across All Pages
   Default: Cyan Modern SVG Cursor
   Hover: White Modern SVG Cursor
   ============================================================ */

/* ─── Global Default Cursor (High-Res 32x32 SVG) ─── */
* {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath d='M2 2 L13 5.5 L8.5 8.5 L5.5 13 Z' fill='%2300E5FF' stroke='%2300E5FF' stroke-width='1.5' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 2 2, auto !important;
}

/* ─── Hover Cursor (White) on Clickable Elements and their children ─── */
a, a *,
button, button *,
[role="button"], [role="button"] *,
input[type="submit"], input[type="button"],
select, label, summary,
[onclick], [onclick] *,
[tabindex]:not([tabindex="-1"]), [tabindex]:not([tabindex="-1"]) *,
.auth-link, .auth-link *,
.auth-btn, .auth-btn *,
.nav-link, .nav-link *,
.mobile-menu-btn, .mobile-menu-btn *,
.password-toggle, .password-toggle *,
.pricing-card.popular, .pricing-card.popular *,
.feature-card, .feature-card * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath d='M2 2 L13 5.5 L8.5 8.5 L5.5 13 Z' fill='%23ffffff' stroke='%23ffffff' stroke-width='1.5' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 2 2, pointer !important;
}

/* ─── Text Cursor for Inputs ─── */
input[type="text"], input[type="password"], input[type="email"], 
input[type="number"], input[type="search"], input[type="tel"], 
input[type="url"], textarea {
    cursor: text !important;
}

/* ─── Disable Custom Cursor on Mobile Devices ─── */
@media (max-width: 768px), (pointer: coarse) {
    * {
        cursor: auto !important;
    }
}
