/* =========================================
   CONTENT PROTECTION
   ========================================= */

/* 1. Disable Text Selection Globally */
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10/11 */
    user-select: none; /* Standard */
    -webkit-touch-callout: none; /* iOS Safari */
}

/* 2. Disable Image Dragging & Highlighting */
img, video {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

/* 3. EXCEPTIONS: Allow copying for Contact Info */
/* Add class="allow-select" to any specific div/p you want copyable */
.allow-select, 
address, 
a[href^="tel:"], 
a[href^="mailto:"],
.footerCols, /* Usually safe to allow footer links */
.contact-block {
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    cursor: text;
}