/* ============================================
   ZENDEEPS UTILITY CLASSES
   ============================================
   Comprehensive utility class system for rapid development.
   These classes can be used directly in HTML for quick styling.
   ============================================ */

/* SPACING UTILITIES
   ============================================ */

/* Padding - All Sides */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.p-20 { padding: 5rem; }
.p-24 { padding: 6rem; }

/* Padding - Horizontal (left + right) */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }

/* Padding - Vertical (top + bottom) */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* Padding - Individual Sides */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }
.pr-10 { padding-right: 2.5rem; }
.pr-12 { padding-right: 3rem; }

/* Margin - All Sides */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-10 { margin: 2.5rem; }
.m-12 { margin: 3rem; }
.m-16 { margin: 4rem; }
.m-20 { margin: 5rem; }
.m-auto { margin: auto; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }

/* Margin - Horizontal (left + right) */
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; }
.mx-12 { margin-left: 3rem; margin-right: 3rem; }
.mx-16 { margin-left: 4rem; margin-right: 4rem; }
.mx-20 { margin-left: 5rem; margin-right: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Margin - Vertical (top + bottom) */
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.my-20 { margin-top: 5rem; margin-bottom: 5rem; }

/* Margin - Individual Sides */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }
.ml-10 { margin-left: 2.5rem; }
.ml-12 { margin-left: 3rem; }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-6 { margin-right: 1.5rem; }
.mr-8 { margin-right: 2rem; }
.mr-10 { margin-right: 2.5rem; }
.mr-12 { margin-right: 3rem; }
.mr-auto { margin-right: auto; }

/* Negative Margins */
.-mt-1 { margin-top: -0.25rem; }
.-mt-2 { margin-top: -0.5rem; }
.-mt-4 { margin-top: -1rem; }
.-mt-8 { margin-top: -2rem; }
.-mt-12 { margin-top: -3rem; }
.-mt-16 { margin-top: -4rem; }

.-mb-1 { margin-bottom: -0.25rem; }
.-mb-2 { margin-bottom: -0.5rem; }
.-mb-4 { margin-bottom: -1rem; }
.-mb-8 { margin-bottom: -2rem; }

.-ml-1 { margin-left: -0.25rem; }
.-ml-2 { margin-left: -0.5rem; }
.-ml-4 { margin-left: -1rem; }
.-ml-8 { margin-left: -2rem; }

.-mr-1 { margin-right: -0.25rem; }
.-mr-2 { margin-right: -0.5rem; }
.-mr-4 { margin-right: -1rem; }
.-mr-8 { margin-right: -2rem; }

/* BORDER RADIUS UTILITIES
   ============================================ */

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Border Radius - Individual Corners */
.rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; }
.rounded-t { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
.rounded-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }

.rounded-b-none { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.rounded-b { border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-b-lg { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }
.rounded-b-xl { border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }
.rounded-b-2xl { border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem; }

.rounded-l-none { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.rounded-l { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; }
.rounded-l-lg { border-top-left-radius: 0.5rem; border-bottom-left-radius: 0.5rem; }

.rounded-r-none { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.rounded-r { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-r-lg { border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

/* SHADOW UTILITIES
   ============================================ */

.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }

/* Colored Shadows */
.shadow-green { box-shadow: 0 10px 15px -3px rgba(212, 245, 90, 0.3), 0 4px 6px -2px rgba(212, 245, 90, 0.2); }
.shadow-coral { box-shadow: 0 10px 15px -3px rgba(234, 91, 58, 0.3), 0 4px 6px -2px rgba(234, 91, 58, 0.2); }
.shadow-cyan { box-shadow: 0 10px 15px -3px rgba(213, 239, 245, 0.4), 0 4px 6px -2px rgba(213, 239, 245, 0.3); }
.shadow-yellow { box-shadow: 0 10px 15px -3px rgba(240, 225, 87, 0.3), 0 4px 6px -2px rgba(240, 225, 87, 0.2); }

/* Hover Shadows */
.hover-shadow:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.hover-shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover-shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* EFFECTS & ANIMATIONS
   ============================================ */

/* Transitions */
.transition { transition: all 0.3s ease; }
.transition-fast { transition: all 0.15s ease; }
.transition-slow { transition: all 0.5s ease; }
.transition-colors { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }

/* Transforms */
.scale-90 { transform: scale(0.9); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-125 { transform: scale(1.25); }

.hover-scale:hover { transform: scale(1.05); }
.hover-scale-sm:hover { transform: scale(1.02); }
.hover-scale-lg:hover { transform: scale(1.1); }

/* Translate */
.translate-y-1 { transform: translateY(0.25rem); }
.translate-y-2 { transform: translateY(0.5rem); }
.translate-y-4 { transform: translateY(1rem); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-y-4 { transform: translateY(-1rem); }

.hover-lift:hover { transform: translateY(-0.25rem); }
.hover-lift-lg:hover { transform: translateY(-0.5rem); }

/* Rotate */
.rotate-0 { transform: rotate(0deg); }
.rotate-45 { transform: rotate(45deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }
.-rotate-45 { transform: rotate(-45deg); }
.-rotate-90 { transform: rotate(-90deg); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.hover-opacity:hover { opacity: 0.8; }

/* Blur */
.blur-none { filter: blur(0); }
.blur-sm { filter: blur(4px); }
.blur { filter: blur(8px); }
.blur-lg { filter: blur(16px); }

/* Grayscale */
.grayscale-0 { filter: grayscale(0); }
.grayscale { filter: grayscale(100%); }
.hover-grayscale-0:hover { filter: grayscale(0); }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-fadeIn { animation: fadeIn 0.5s ease-out; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out; }
.animate-fadeInDown { animation: fadeInDown 0.6s ease-out; }
.animate-slideInLeft { animation: slideInLeft 0.6s ease-out; }
.animate-slideInRight { animation: slideInRight 0.6s ease-out; }
.animate-bounce { animation: bounce 1s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* DISPLAY & LAYOUT UTILITIES
   ============================================ */

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flex Direction */
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }

/* Flex Wrap */
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

/* Flex & Grid Alignment */
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.self-center { align-self: center; }
.self-stretch { align-self: stretch; }

/* Gap */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Position */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Overflow */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

/* TYPOGRAPHY UTILITIES
   ============================================ */

/* Font Size */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Font Family */
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.font-sans { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
.font-serif { font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

/* Font Weight */
.font-thin { font-weight: 100; }
.font-extralight { font-weight: 200; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* Text Decoration */
.underline { text-decoration: underline; }
.line-through { text-decoration: line-through; }
.no-underline { text-decoration: none; }

/* Line Height */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Letter Spacing */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* COLOR UTILITIES
   ============================================ */

/* Text Colors */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-lime { color: var(--accent-green); }
.text-coral { color: var(--accent-coral); }
.text-cyan { color: var(--color-cyan); }
.text-yellow { color: var(--accent-yellow); }
.text-white { color: var(--color-white); }
.text-gray { color: var(--color-gray); }
.text-dark-gray { color: var(--color-dark-gray); }
.text-black { color: var(--color-black); }

/* Background Colors */
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-lime { background-color: var(--accent-green); }
.bg-coral { background-color: var(--accent-coral); }
.bg-cyan { background-color: var(--accent-cyan); }
.bg-yellow { background-color: var(--accent-yellow); }
.bg-white { background-color: var(--color-white); }
.bg-off-white { background-color: var(--color-off-white); }
.bg-light-gray { background-color: var(--color-light-gray); }
.bg-gray { background-color: var(--color-gray); }
.bg-dark-gray { background-color: var(--color-dark-gray); }
.bg-transparent { background-color: transparent; }

/* Additional Light Gray Shades */
.bg-gray-50 { background-color: #FAFAFA; }
.bg-gray-100 { background-color: #F5F5F5; }
.bg-gray-200 { background-color: #EEEEEE; }
.bg-gray-300 { background-color: #E0E0E0; }
.bg-gray-400 { background-color: #D6D6D6; }
.bg-gray-500 { background-color: #BDBDBD; }
.bg-gray-600 { background-color: #9E9E9E; }

/* Page Background Gray (Magier Style) */
.bg-page { background-color: #e8e8ed; }
.bg-page-light { background-color: #f0f0f5; }
.bg-page-lighter { background-color: #f5f5f7; }

/* Gradient Backgrounds */
.bg-gradient-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.bg-gradient-pink { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.bg-gradient-blue { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.bg-gradient-orange { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

/* Border Colors */
.border-primary { border-color: var(--primary-color); }
.border-lime { border-color: var(--accent-green); }
.border-coral { border-color: var(--accent-coral); }
.border-cyan { border-color: var(--accent-cyan); }
.border-yellow { border-color: var(--accent-yellow); }
.border-white { border-color: var(--color-white); }
.border-gray { border-color: var(--color-gray); }
.border-light-gray { border-color: var(--color-light-gray); }

/* Border Width */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-8 { border-width: 8px; border-style: solid; }

.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }

/* WIDTH & HEIGHT UTILITIES
   ============================================ */

/* Width */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-1-2 { width: 50%; }
.w-1-3 { width: 33.333333%; }
.w-2-3 { width: 66.666667%; }
.w-1-4 { width: 25%; }
.w-3-4 { width: 75%; }

/* Max Width */
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 52rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.max-w-screen { max-width: 100vw; }

/* Height */
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }

/* Object Fit */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }

/* RESPONSIVE UTILITIES
   ============================================ */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    /* Padding */
    .md\:p-0 { padding: 0; }
    .md\:p-4 { padding: 1rem; }
    .md\:p-6 { padding: 1.5rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:p-12 { padding: 3rem; }
    .md\:p-16 { padding: 4rem; }
    
    .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    
    .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .md\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
    .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
    
    /* Margin */
    .md\:m-0 { margin: 0; }
    .md\:m-4 { margin: 1rem; }
    .md\:m-6 { margin: 1.5rem; }
    .md\:m-8 { margin: 2rem; }
    
    .md\:mx-auto { margin-left: auto; margin-right: auto; }
    .md\:my-8 { margin-top: 2rem; margin-bottom: 2rem; }
    .md\:my-12 { margin-top: 3rem; margin-bottom: 3rem; }
    
    .md\:mt-0 { margin-top: 0; }
    .md\:mt-4 { margin-top: 1rem; }
    .md\:mt-8 { margin-top: 2rem; }
    .md\:mt-12 { margin-top: 3rem; }
    
    .md\:mb-0 { margin-bottom: 0; }
    .md\:mb-4 { margin-bottom: 1rem; }
    .md\:mb-8 { margin-bottom: 2rem; }
    .md\:mb-12 { margin-bottom: 3rem; }
    
    /* Display */
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:grid { display: grid; }
    .md\:hidden { display: none; }
    
    /* Flex */
    .md\:flex-row { flex-direction: row; }
    .md\:flex-col { flex-direction: column; }
    .md\:items-center { align-items: center; }
    .md\:justify-between { justify-content: space-between; }
    .md\:justify-center { justify-content: center; }
    
    /* Gap */
    .md\:gap-4 { gap: 1rem; }
    .md\:gap-6 { gap: 1.5rem; }
    .md\:gap-8 { gap: 2rem; }
    
    /* Text */
    .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    
    .md\:text-left { text-align: left; }
    .md\:text-center { text-align: center; }
    .md\:text-right { text-align: right; }
    
    /* Width */
    .md\:w-auto { width: auto; }
    .md\:w-full { width: 100%; }
    .md\:w-1-2 { width: 50%; }
    .md\:w-1-3 { width: 33.333333%; }
    .md\:w-2-3 { width: 66.666667%; }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    /* Padding */
    .lg\:p-0 { padding: 0; }
    .lg\:p-4 { padding: 1rem; }
    .lg\:p-6 { padding: 1.5rem; }
    .lg\:p-8 { padding: 2rem; }
    .lg\:p-12 { padding: 3rem; }
    .lg\:p-16 { padding: 4rem; }
    .lg\:p-20 { padding: 5rem; }
    
    .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
    
    .lg\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .lg\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
    .lg\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
    .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    
    /* Margin */
    .lg\:m-0 { margin: 0; }
    .lg\:m-8 { margin: 2rem; }
    .lg\:m-12 { margin: 3rem; }
    
    .lg\:mx-auto { margin-left: auto; margin-right: auto; }
    .lg\:my-12 { margin-top: 3rem; margin-bottom: 3rem; }
    .lg\:my-16 { margin-top: 4rem; margin-bottom: 4rem; }
    
    .lg\:mt-0 { margin-top: 0; }
    .lg\:mt-8 { margin-top: 2rem; }
    .lg\:mt-12 { margin-top: 3rem; }
    .lg\:mt-16 { margin-top: 4rem; }
    
    .lg\:mb-0 { margin-bottom: 0; }
    .lg\:mb-8 { margin-bottom: 2rem; }
    .lg\:mb-12 { margin-bottom: 3rem; }
    .lg\:mb-16 { margin-bottom: 4rem; }
    
    /* Display */
    .lg\:block { display: block; }
    .lg\:flex { display: flex; }
    .lg\:grid { display: grid; }
    .lg\:hidden { display: none; }
    
    /* Flex */
    .lg\:flex-row { flex-direction: row; }
    .lg\:flex-col { flex-direction: column; }
    .lg\:items-center { align-items: center; }
    .lg\:justify-between { justify-content: space-between; }
    .lg\:justify-center { justify-content: center; }
    
    /* Gap */
    .lg\:gap-6 { gap: 1.5rem; }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:gap-12 { gap: 3rem; }
    
    /* Text */
    .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    
    /* Width */
    .lg\:w-auto { width: auto; }
    .lg\:w-full { width: 100%; }
    .lg\:w-1-2 { width: 50%; }
    .lg\:w-1-3 { width: 33.333333%; }
    .lg\:w-2-3 { width: 66.666667%; }
    .lg\:w-1-4 { width: 25%; }
    .lg\:w-3-4 { width: 75%; }
}

/* HELPER UTILITIES
   ============================================ */

/* Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-default { cursor: default; }

/* User Select */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Backdrop Blur */
.backdrop-blur-none { backdrop-filter: blur(0); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }





/* ANIMATION UTILITIES (50+ VARIATIONS)
   ============================================ */

/* 1. Base Class */
.animate {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* 2. Fade Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-in { animation-name: fadeIn; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation-name: fadeInUp; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-down { animation-name: fadeInDown; }

@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
.fade-in-left { animation-name: fadeInLeft; }

@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.fade-in-right { animation-name: fadeInRight; }

/* 3. Zoom Animations */
@keyframes zoomIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.zoom-in { animation-name: zoomIn; }

@keyframes zoomInUp { from { opacity: 0; transform: scale(0.5) translateY(100px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.zoom-in-up { animation-name: zoomInUp; }

@keyframes zoomInDown { from { opacity: 0; transform: scale(0.5) translateY(-100px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.zoom-in-down { animation-name: zoomInDown; }

/* 4. Slide Animations */
@keyframes slideInUp { from { transform: translateY(100%); visibility: visible; } to { transform: translateY(0); } }
.slide-in-up { animation-name: slideInUp; }

@keyframes slideInDown { from { transform: translateY(-100%); visibility: visible; } to { transform: translateY(0); } }
.slide-in-down { animation-name: slideInDown; }

@keyframes slideInLeft { from { transform: translateX(-100%); visibility: visible; } to { transform: translateX(0); } }
.slide-in-left { animation-name: slideInLeft; }

@keyframes slideInRight { from { transform: translateX(100%); visibility: visible; } to { transform: translateX(0); } }
.slide-in-right { animation-name: slideInRight; }

/* 5. Bounce Animations */
@keyframes bounceIn { 
    from, 20%, 40%, 60%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
    20% { transform: scale3d(1.1, 1.1, 1.1); }
    40% { transform: scale3d(0.9, 0.9, 0.9); }
    60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
    80% { transform: scale3d(0.97, 0.97, 0.97); }
    to { opacity: 1; transform: scale3d(1, 1, 1); }
}
.bounce-in { animation-name: bounceIn; }

/* 6. Flip Animations */
@keyframes flipInX {
    from { transform: perspective(400px) rotate3d(1, 0, 0, 90deg); animation-timing-function: ease-in; opacity: 0; }
    40% { transform: perspective(400px) rotate3d(1, 0, 0, -20deg); animation-timing-function: ease-in; }
    60% { transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; }
    80% { transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
    to { transform: perspective(400px); }
}
.flip-in-x { animation-name: flipInX; backface-visibility: visible !important; }

@keyframes flipInY {
    from { transform: perspective(400px) rotate3d(0, 1, 0, 90deg); animation-timing-function: ease-in; opacity: 0; }
    40% { transform: perspective(400px) rotate3d(0, 1, 0, -20deg); animation-timing-function: ease-in; }
    60% { transform: perspective(400px) rotate3d(0, 1, 0, 10deg); opacity: 1; }
    80% { transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
    to { transform: perspective(400px); }
}
.flip-in-y { animation-name: flipInY; backface-visibility: visible !important; }

/* 7. Special Attention Seekers */
@keyframes pulse { from { transform: scale3d(1, 1, 1); } 50% { transform: scale3d(1.05, 1.05, 1.05); } to { transform: scale3d(1, 1, 1); } }
.pulse { animation-name: pulse; animation-timing-function: ease-in-out; }

@keyframes shake { from, to { transform: translate3d(0, 0, 0); } 10%, 30%, 50%, 70%, 90% { transform: translate3d(-10px, 0, 0); } 20%, 40%, 60%, 80% { transform: translate3d(10px, 0, 0); } }
.shake { animation-name: shake; }

@keyframes flash { from, 50%, to { opacity: 1; } 25%, 75% { opacity: 0; } }
.flash { animation-name: flash; }

@keyframes tada {
    from { transform: scale3d(1, 1, 1); }
    10%, 20% { transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
    30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
    40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
    to { transform: scale3d(1, 1, 1); }
}
.tada { animation-name: tada; }

/* 8. Duration Utilities */
.dur-200 { animation-duration: 200ms; }
.dur-300 { animation-duration: 300ms; }
.dur-500 { animation-duration: 500ms; }
.dur-700 { animation-duration: 700ms; }
.dur-1000 { animation-duration: 1000ms; }
.dur-1500 { animation-duration: 1500ms; }
.dur-2000 { animation-duration: 2000ms; }

/* 9. Delay Utilities */
.del-100 { animation-delay: 100ms; }
.del-200 { animation-delay: 200ms; }
.del-300 { animation-delay: 300ms; }
.del-400 { animation-delay: 400ms; }
.del-500 { animation-delay: 500ms; }
.del-700 { animation-delay: 700ms; }
.del-1000 { animation-delay: 1000ms; }

/* 10. Easing Utilities */
.ease-linear { animation-timing-function: linear; }
.ease-in { animation-timing-function: ease-in; }
.ease-out { animation-timing-function: ease-out; }
.ease-in-out { animation-timing-function: ease-in-out; }
.ease-premium { animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }

/* 11. Iteration Utilities */
.infinite { animation-iteration-count: infinite; }
.repeat-1 { animation-iteration-count: 1; }
.repeat-2 { animation-iteration-count: 2; }
.repeat-3 { animation-iteration-count: 3; }

/* 12. Intersection Observer Trigger (requires .reveal base) */
.reveal:not(.active) {
    animation-name: none !important;
}

/* ADVANCED ANIMATION UTILITIES (ADDITIONAL 50+)
   ============================================ */

/* 13. Back Entrances */
@keyframes backInDown { 0% { transform: translateY(-1200px) scale(0.7); opacity: 0.7; } 80% { transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }
.back-in-down { animation-name: backInDown; }

@keyframes backInUp { 0% { transform: translateY(1200px) scale(0.7); opacity: 0.7; } 80% { transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }
.back-in-up { animation-name: backInUp; }

@keyframes backInLeft { 0% { transform: translateX(-2000px) scale(0.7); opacity: 0.7; } 80% { transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }
.back-in-left { animation-name: backInLeft; }

@keyframes backInRight { 0% { transform: translateX(2000px) scale(0.7); opacity: 0.7; } 80% { transform: translateX(0px) scale(0.7); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }
.back-in-right { animation-name: backInRight; }

/* 14. Bouncing Entrances */
@keyframes bounceInDown { from, 60%, 75%, 90%, to { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; transform: translate3d(0, -3000px, 0) scaleY(3); } 60% { opacity: 1; transform: translate3d(0, 25px, 0) scaleY(0.9); } 75% { transform: translate3d(0, -10px, 0) scaleY(0.95); } 90% { transform: translate3d(0, 5px, 0) scaleY(0.98); } to { transform: translate3d(0, 0, 0); } }
.bounce-in-down { animation-name: bounceInDown; }

@keyframes bounceInUp { from, 60%, 75%, 90%, to { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; transform: translate3d(0, 3000px, 0) scaleY(3); } 60% { opacity: 1; transform: translate3d(0, -20px, 0) scaleY(0.9); } 75% { transform: translate3d(0, 10px, 0) scaleY(0.95); } 90% { transform: translate3d(0, -5px, 0) scaleY(0.98); } to { transform: translate3d(0, 0, 0); } }
.bounce-in-up { animation-name: bounceInUp; }

@keyframes bounceInLeft { from, 60%, 75%, 90%, to { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; transform: translate3d(-3000px, 0, 0) scaleX(3); } 60% { opacity: 1; transform: translate3d(25px, 0, 0) scaleX(1); } 75% { transform: translate3d(-10px, 0, 0) scaleX(0.98); } 90% { transform: translate3d(5px, 0, 0) scaleX(0.995); } to { transform: translate3d(0, 0, 0); } }
.bounce-in-left { animation-name: bounceInLeft; }

@keyframes bounceInRight { from, 60%, 75%, 90%, to { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } 0% { opacity: 0; transform: translate3d(3000px, 0, 0) scaleX(3); } 60% { opacity: 1; transform: translate3d(-25px, 0, 0) scaleX(1); } 75% { transform: translate3d(10px, 0, 0) scaleX(0.98); } 90% { transform: translate3d(-5px, 0, 0) scaleX(0.995); } to { transform: translate3d(0, 0, 0); } }
.bounce-in-right { animation-name: bounceInRight; }

/* 15. Rotating Entrances */
@keyframes rotateIn { from { transform: rotate3d(0, 0, 1, -200deg); opacity: 0; } to { transform: translate3d(0, 0, 0); opacity: 1; } }
.rotate-in { animation-name: rotateIn; transform-origin: center; }

@keyframes rotateInDownLeft { from { transform: rotate3d(0, 0, 1, -45deg); opacity: 0; } to { transform: translate3d(0, 0, 0); opacity: 1; } }
.rotate-in-down-left { animation-name: rotateInDownLeft; transform-origin: left bottom; }

@keyframes rotateInDownRight { from { transform: rotate3d(0, 0, 1, 45deg); opacity: 0; } to { transform: translate3d(0, 0, 0); opacity: 1; } }
.rotate-in-down-right { animation-name: rotateInDownRight; transform-origin: right bottom; }

/* 16. Zoom Entrances Expansion */
@keyframes zoomInLeft { 0% { opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoom-in-left { animation-name: zoomInLeft; }

@keyframes zoomInRight { 0% { opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } 60% { opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoom-in-right { animation-name: zoomInRight; }

/* 17. Blur Reveals (Premium Look) */
@keyframes blurIn { from { filter: blur(20px); opacity: 0; transform: scale(0.9); } to { filter: blur(0); opacity: 1; transform: scale(1); } }
.blur-in { animation-name: blurIn; }

@keyframes blurInUp { from { filter: blur(10px); opacity: 0; transform: translateY(50px); } to { filter: blur(0); opacity: 1; transform: translateY(0); } }
.blur-in-up { animation-name: blurInUp; }

@keyframes blurInDown { from { filter: blur(10px); opacity: 0; transform: translateY(-50px); } to { filter: blur(0); opacity: 1; transform: translateY(0); } }
.blur-in-down { animation-name: blurInDown; }

/* 18. Perspective Entrances */
@keyframes perspectiveInDown { from { transform: perspective(400px) rotateX(90deg); opacity: 0; } to { transform: perspective(400px) rotateX(0deg); opacity: 1; } }
.perspective-in-down { animation-name: perspectiveInDown; transform-origin: top; }

@keyframes perspectiveInUp { from { transform: perspective(400px) rotateX(-90deg); opacity: 0; } to { transform: perspective(400px) rotateX(0deg); opacity: 1; } }
.perspective-in-up { animation-name: perspectiveInUp; transform-origin: bottom; }

@keyframes perspectiveInLeft { from { transform: perspective(400px) rotateY(-90deg); opacity: 0; } to { transform: perspective(400px) rotateY(0deg); opacity: 1; } }
.perspective-in-left { animation-name: perspectiveInLeft; transform-origin: left; }

/* 19. Attention Seekers Expansion */
@keyframes rubberBand { from { transform: scale3d(1, 1, 1); } 30% { transform: scale3d(1.25, 0.75, 1); } 40% { transform: scale3d(0.75, 1.25, 1); } 50% { transform: scale3d(1.15, 0.85, 1); } 65% { transform: scale3d(0.95, 1.05, 1); } 75% { transform: scale3d(1.05, 0.95, 1); } to { transform: scale3d(1, 1, 1); } }
.rubber-band { animation-name: rubberBand; }

@keyframes swing { 20% { transform: rotate3d(0, 0, 1, 15deg); } 40% { transform: rotate3d(0, 0, 1, -10deg); } 60% { transform: rotate3d(0, 0, 1, 5deg); } 80% { transform: rotate3d(0, 0, 1, -5deg); } to { transform: rotate3d(0, 0, 1, 0deg); } }
.swing { animation-name: swing; transform-origin: top center; }

@keyframes wobble { from { transform: translate3d(0, 0, 0); } 15% { transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); } 30% { transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); } 45% { transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); } 60% { transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); } 75% { transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); } to { transform: translate3d(0, 0, 0); } }
.wobble { animation-name: wobble; }

@keyframes jello { from, 11.1%, to { transform: translate3d(0, 0, 0); } 22.2% { transform: skewX(-12.5deg) skewY(-12.5deg); } 33.3% { transform: skewX(6.25deg) skewY(6.25deg); } 44.4% { transform: skewX(-3.125deg) skewY(-3.125deg); } 55.5% { transform: skewX(1.5625deg) skewY(1.5625deg); } 66.6% { transform: skewX(-0.78125deg) skewY(-0.78125deg); } 77.7% { transform: skewX(0.390625deg) skewY(0.390625deg); } 88.8% { transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello { animation-name: jello; transform-origin: center; }

@keyframes heartBeat { 0% { transform: scale(1); } 14% { transform: scale(1.3); } 28% { transform: scale(1); } 42% { transform: scale(1.3); } 70% { transform: scale(1); } }
.heart-beat { animation-name: heartBeat; animation-duration: 1.3s; animation-timing-function: ease-in-out; }

/* 20. Specials */
@keyframes jackInTheBox { from { opacity: 0; transform: scale(0.1) rotate(30deg); transform-origin: center bottom; } 50% { transform: rotate(-10deg); } 70% { transform: rotate(3deg); } to { opacity: 1; transform: scale(1); } }
.jack-in-the-box { animation-name: jackInTheBox; }

@keyframes rollIn { from { opacity: 0; transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
.roll-in { animation-name: rollIn; }

/* 21. Infinite Motion (Floating, Spinning) */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
.float { animation-name: float; animation-iteration-count: infinite; animation-timing-function: ease-in-out; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin { animation-name: spin; animation-iteration-count: infinite; animation-timing-function: linear; }

@keyframes bounceY { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } }
.bounce-y { animation-name: bounceY; animation-iteration-count: infinite; }

/* 22. New Fade Variants */
.fade-in-up-sm { animation-name: fadeInUpSm; }
@keyframes fadeInUpSm { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.fade-in-up-lg { animation-name: fadeInUpLg; }
@keyframes fadeInUpLg { from { opacity: 0; transform: translateY(100px); } to { opacity: 1; transform: translateY(0); } }

/* 23. Staggered Entrance Utilities (For children) */
.stagger-children > * { opacity: 0; }
.stagger-children.active > *:nth-child(1) { animation: fadeIn 0.5s forwards 0.1s; }
.stagger-children.active > *:nth-child(2) { animation: fadeIn 0.5s forwards 0.2s; }
.stagger-children.active > *:nth-child(3) { animation: fadeIn 0.5s forwards 0.3s; }
.stagger-children.active > *:nth-child(4) { animation: fadeIn 0.5s forwards 0.4s; }
.stagger-children.active > *:nth-child(5) { animation: fadeIn 0.5s forwards 0.5s; }


/* MOTION & EXIT UTILITIES (ADDITIONAL 100+)
   ============================================ */

/* 24. Fade Exits */
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
.fade-out { animation-name: fadeOut; }
@keyframes fadeOutUp { from { opacity: 1; } to { opacity: 0; transform: translate3d(0, -30px, 0); } }
.fade-out-up { animation-name: fadeOutUp; }
@keyframes fadeOutDown { from { opacity: 1; } to { opacity: 0; transform: translate3d(0, 30px, 0); } }
.fade-out-down { animation-name: fadeOutDown; }
@keyframes fadeOutLeft { from { opacity: 1; } to { opacity: 0; transform: translate3d(-30px, 0, 0); } }
.fade-out-left { animation-name: fadeOutLeft; }
@keyframes fadeOutRight { from { opacity: 1; } to { opacity: 0; transform: translate3d(30px, 0, 0); } }
.fade-out-right { animation-name: fadeOutRight; }

/* 25. Slide Exits */
@keyframes slideOutUp { from { transform: translate3d(0, 0, 0); } to { visibility: hidden; transform: translate3d(0, -100%, 0); } }
.slide-out-up { animation-name: slideOutUp; }
@keyframes slideOutDown { from { transform: translate3d(0, 0, 0); } to { visibility: hidden; transform: translate3d(0, 100%, 0); } }
.slide-out-down { animation-name: slideOutDown; }
@keyframes slideOutLeft { from { transform: translate3d(0, 0, 0); } to { visibility: hidden; transform: translate3d(-100%, 0, 0); } }
.slide-out-left { animation-name: slideOutLeft; }
@keyframes slideOutRight { from { transform: translate3d(0, 0, 0); } to { visibility: hidden; transform: translate3d(100%, 0, 0); } }
.slide-out-right { animation-name: slideOutRight; }

/* 26. Zoom Exits */
@keyframes zoomOut { from { opacity: 1; } 50% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); } to { opacity: 0; } }
.zoom-out { animation-name: zoomOut; }
@keyframes zoomOutUp { 40% { opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } to { opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); transform-origin: center top; animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoom-out-up { animation-name: zoomOutUp; }

/* 27. Flip Exits */
@keyframes flipOutX { from { transform: perspective(400px); } 30% { transform: perspective(400px) rotate3d(1, 0, 0, -20deg); opacity: 1; } to { transform: perspective(400px) rotate3d(1, 0, 0, 90deg); opacity: 0; } }
.flip-out-x { animation-name: flipOutX; backface-visibility: visible !important; }
@keyframes flipOutY { from { transform: perspective(400px); } 30% { transform: perspective(400px) rotate3d(0, 1, 0, -15deg); opacity: 1; } to { transform: perspective(400px) rotate3d(0, 1, 0, 90deg); opacity: 0; } }
.flip-out-y { animation-name: flipOutY; backface-visibility: visible !important; }

/* 28. Lightspeed */
@keyframes lightSpeedInRight { from { transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; } 60% { transform: skewX(20deg); opacity: 1; } 80% { transform: skewX(-5deg); } to { transform: translate3d(0, 0, 0); } }
.lightspeed-in-right { animation-name: lightSpeedInRight; animation-timing-function: ease-out; }
@keyframes lightSpeedInLeft { from { transform: translate3d(-100%, 0, 0) skewX(30deg); opacity: 0; } 60% { transform: skewX(-20deg); opacity: 1; } 80% { transform: skewX(5deg); } to { transform: translate3d(0, 0, 0); } }
.lightspeed-in-left { animation-name: lightSpeedInLeft; animation-timing-function: ease-out; }
@keyframes lightSpeedOutRight { from { opacity: 1; } to { transform: translate3d(100%, 0, 0) skewX(30deg); opacity: 0; } }
.lightspeed-out-right { animation-name: lightSpeedOutRight; animation-timing-function: ease-in; }

/* 29. 3D & Tilt Entrances */
@keyframes tiltIn { from { transform: rotateY(-30deg) rotateX(15deg) scale(0.9); opacity: 0; } to { transform: rotateY(0) rotateX(0) scale(1); opacity: 1; } }
.tilt-in { animation-name: tiltIn; perspective: 1000px; }

/* 30. Reveal Clip-Paths */
@keyframes revealCircle { from { clip-path: circle(0% at 50% 50%); } to { clip-path: circle(150% at 50% 50%); } }
.reveal-circle { animation-name: revealCircle; }
@keyframes revealInset { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
.reveal-inset-up { animation-name: revealInset; }
@keyframes revealInsetSide { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
.reveal-inset-right { animation-name: revealInsetSide; }

/* 31. Text & Typography Motion */
@keyframes trackingIn { from { letter-spacing: -0.5em; opacity: 0; } to { letter-spacing: normal; opacity: 1; } }
.tracking-in { animation-name: trackingIn; }
@keyframes trackingOut { from { opacity: 1; } to { letter-spacing: -0.5em; opacity: 0; } }
.tracking-out { animation-name: trackingOut; }
@keyframes focusIn { from { filter: blur(12px); opacity: 0; } to { filter: blur(0); opacity: 1; } }
.focus-in { animation-name: focusIn; }

/* 32. Background & Glow effects */
@keyframes glowPulse { from { box-shadow: 0 0 5px rgba(212, 247, 90, 0.2); } 50% { box-shadow: 0 0 20px rgba(212, 247, 90, 0.6); } to { box-shadow: 0 0 5px rgba(212, 247, 90, 0.2); } }
.glow-lime { animation-name: glowPulse; animation-iteration-count: infinite; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.shimmer { background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%); background-size: 200% 100%; animation: shimmer 2s infinite linear; }

/* 33. Border Drawing */
@keyframes borderDraw { from { stroke-dashoffset: 1000; } to { stroke-dashoffset: 0; } }
.border-draw { stroke-dasharray: 1000; animation: borderDraw 2s ease-in-out forwards; }

/* 34. Hover Micro-interactions (Classes to use inside .hover-animate) */
.hover-lift { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.hover-lift:hover { transform: translateY(-8px); }
.hover-scale { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.hover-scale:hover { transform: scale(1.05); }
.hover-glow { transition: box-shadow 0.3s ease; }
.hover-glow:hover { box-shadow: 0 0 20px rgba(212, 247, 90, 0.4); }
.hover-dim { transition: opacity 0.3s ease; }
.hover-dim:hover { opacity: 0.7; }

/* 35. Advanced Timing Control */
.dur-100 { animation-duration: 100ms; }
.dur-400 { animation-duration: 400ms; }
.dur-600 { animation-duration: 600ms; }
.dur-800 { animation-duration: 800ms; }
.dur-2500 { animation-duration: 2500ms; }
.dur-3000 { animation-duration: 3000ms; }

/* 36. More Delays */
.del-50 { animation-delay: 50ms; }
.del-150 { animation-delay: 150ms; }
.del-600 { animation-delay: 600ms; }
.del-800 { animation-delay: 800ms; }
.del-1500 { animation-delay: 1500ms; }
.del-2000 { animation-delay: 2000ms; }

/* 37. Direction & Fill Mode */
.reverse { animation-direction: reverse; }
.alternate { animation-direction: alternate; }
.fill-none { animation-fill-mode: none; }
.fill-forwards { animation-fill-mode: forwards; }
.fill-backwards { animation-fill-mode: backwards; }
.fill-both { animation-fill-mode: both; }

/* 38. Animation Play State */
.paused { animation-play-state: paused; }
.running { animation-play-state: running; }
.hover-pause:hover { animation-play-state: paused; }

/* 39. Custom Bezier Easings */
.ease-in-back { animation-timing-function: cubic-bezier(0.36, 0, 0.66, -0.56); }
.ease-out-back { animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
.ease-in-out-back { animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6); }
.ease-in-expo { animation-timing-function: cubic-bezier(0.7, 0, 0.84, 0); }
.ease-out-expo { animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }

/* 40. Infinite Variations of earlier ones */
.spin-slow { animation: spin 10s infinite linear; }
.spin-fast { animation: spin 1s infinite linear; }
.float-slow { animation: float 5s infinite ease-in-out; }
.pulse-slow { animation: pulse 3s infinite ease-in-out; }

/* 41. Skeleton Loading motion */
@keyframes loading-skeleton { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }
.skeleton { animation: loading-skeleton 1.5s infinite ease-in-out; background: #eee; }

