/* Utility Classes - Tailwind-like utilities for layout and design */

/* Layout */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1rem; 
}

.mx-auto { 
    margin-left: auto; 
    margin-right: auto; 
}

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

/* Display */
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.inline { display: inline; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.cursor-pointer { cursor: pointer; }
.appearance-none { -webkit-appearance: none; appearance: none; }

/* Touch and Accessibility */
.touch-target {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.touch-device .touch-target {
    padding: 8px;
}

/* Flexbox */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.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; }

/* Spacing - Padding */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-32 { padding-top: 8rem; }
.pb-12 { padding-bottom: 3rem; }

/* Spacing - Margin */
.m-0 { margin: 0; }
.m-4 { margin: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-24 { margin-top: 6rem; }

/* Position and Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-20 { top: 5rem; }
.top-40 { top: 10rem; }
.top-1\/2 { top: 50%; }
.top-1\/3 { top: 33.333333%; }
.bottom-20 { bottom: 5rem; }
.bottom-32 { bottom: 8rem; }
.bottom-40 { bottom: 10rem; }
.left-10 { left: 2.5rem; }
.left-20 { left: 5rem; }
.left-1\/4 { left: 25%; }
.right-20 { right: 5rem; }
.right-40 { right: 10rem; }
.right-1\/3 { right: 33.333333%; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-60 { z-index: 60; }

/* Backdrop and Blur Effects */
.backdrop-blur-lg { 
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.backdrop-blur-xl { 
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.backdrop-blur-sm { 
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.blur-sm { filter: blur(4px); }
.blur-md { filter: blur(12px); }
.blur-lg { filter: blur(16px); }
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }

/* Transform */
.rotate-12 { transform: rotate(12deg); }
.rotate-45 { transform: rotate(45deg); }

/* Width and Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: calc(100vh - 5rem); }
.max-h-\[90vh\] { max-height: 90vh; }

/* Override for specific sections that need full height */
.full-height { min-height: 100vh; margin-top: -5rem; padding-top: 5rem; }

/* Max Width */
.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: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }

.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; }

.font-heading { font-family: var(--font-heading); }
.font-primary { font-family: var(--font-primary); }
.font-body { font-family: var(--font-primary); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Text decoration */
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* Colors */
.text-white { color: var(--text-white); }
.text-gray-300 { color: var(--text-gray-300); }
.text-gray-400 { color: var(--text-gray-400); }
.text-primary-yellow { color: var(--primary-yellow); }
.text-primary-blue { color: var(--primary-blue); }
.text-secondary-blue { color: var(--secondary-blue); }
.text-accent-gold { color: var(--accent-gold); }

.bg-primary-yellow { background-color: var(--primary-yellow); }
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-dark-space { background-color: var(--dark-space); }
.bg-dark-bg { background-color: var(--dark-space); }
.bg-dark-space\/80 { background-color: rgba(15, 23, 42, 0.8); }
.bg-dark-space\/95 { background-color: rgba(15, 23, 42, 0.95); }
.bg-transparent { background-color: transparent; }

/* Background gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-radial { background-image: radial-gradient(var(--tw-gradient-stops)); }

/* Additional gradient and opacity combinations */
.bg-slate-900 { background-color: rgb(15, 23, 42); }
.bg-opacity-95 { background-color: rgba(15, 23, 42, 0.95); }

/* Text gradients */
.bg-clip-text { 
    -webkit-background-clip: text; 
    background-clip: text; 
}
.text-transparent { color: transparent; }

.text-gradient {
    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-dark-space\/95 { background-color: rgba(15, 23, 42, 0.95); }

/* Gradient backgrounds */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-primary-yellow { --tw-gradient-from: var(--primary-yellow); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.to-accent-gold { --tw-gradient-to: var(--accent-gold); }

/* Border */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }
.border-t { border-top-width: 1px; }
.border-primary-yellow { border-color: var(--primary-yellow); }
.border-primary-yellow\/20 { border-color: rgba(250, 204, 21, 0.2); }
.border-gray-700 { border-color: #374151; }
.rounded { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: 9999px; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* Opacity */
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-radial { background-image: radial-gradient(var(--tw-gradient-stops)); }

/* Gradient Color Stops */
.from-primary-yellow\/10 { --tw-gradient-from: rgba(250, 204, 21, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.from-primary-yellow\/20 { --tw-gradient-from: rgba(250, 204, 21, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.from-primary-blue\/20 { --tw-gradient-from: rgba(30, 58, 138, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); }
.from-primary-blue\/30 { --tw-gradient-from: rgba(30, 58, 138, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); }
.from-secondary-blue\/10 { --tw-gradient-from: rgba(59, 130, 246, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.from-accent-gold\/5 { --tw-gradient-from: rgba(245, 158, 11, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }

.to-accent-gold\/5 { --tw-gradient-to: rgba(245, 158, 11, 0.05); }
.to-primary-blue\/5 { --tw-gradient-to: rgba(30, 58, 138, 0.05); }
.to-primary-blue\/10 { --tw-gradient-to: rgba(30, 58, 138, 0.1); }
.to-transparent { --tw-gradient-to: transparent; }

.via-dark-bg { --tw-gradient-stops: var(--tw-gradient-from), var(--dark-space), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }

/* Background Colors with Transparency */
.bg-primary-yellow\/10 { background-color: rgba(250, 204, 21, 0.1); }
.bg-primary-yellow\/20 { background-color: rgba(250, 204, 21, 0.2); }
.bg-primary-yellow\/30 { background-color: rgba(250, 204, 21, 0.3); }
.bg-primary-blue\/10 { background-color: rgba(30, 58, 138, 0.1); }
.bg-primary-blue\/20 { background-color: rgba(30, 58, 138, 0.2); }
.bg-secondary-blue\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-secondary-blue\/30 { background-color: rgba(59, 130, 246, 0.3); }
.bg-accent-gold\/20 { background-color: rgba(245, 158, 11, 0.2); }
.bg-accent-gold\/5 { background-color: rgba(245, 158, 11, 0.05); }

/* Border Colors with Transparency */
.border-primary-yellow\/30 { border-color: rgba(250, 204, 21, 0.3); }
.border-primary-yellow\/40 { border-color: rgba(250, 204, 21, 0.4); }

/* Negative Positioning */
.-top-40 { top: -10rem; }
.-right-40 { right: -10rem; }
.-bottom-40 { bottom: -10rem; }
.-left-40 { left: -10rem; }

/* Blur */
.blur-3xl { filter: blur(64px); }

/* Z-Index */
.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; }

/* Group utility for hover effects */
.group { position: relative; }

/* Group hover states */
.group:hover .group-hover\:text-primary-yellow { color: var(--primary-yellow); }
.group:hover .group-hover\:text-accent-gold { color: var(--accent-gold); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:rotate-12 { transform: rotate(12deg); }

/* Responsive Design Utilities */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:text-lg { font-size: 1.125rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) {
        margin-left: 4rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Space utilities */
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0.75rem;
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 1rem;
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 2rem;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.5rem;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2rem;
}

/* Space Between */
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0.75rem;
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 2rem;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.5rem;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2rem;
}

/* Responsive Display */
.hidden { display: none; }

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:inline-flex { display: inline-flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
        margin-left: 2rem;
    }
    .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) {
        margin-left: 4rem;
    }
    .md\:px-0 { padding-left: 0; padding-right: 0; }
    .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:py-0 { padding-top: 0; padding-bottom: 0; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:text-6xl { font-size: 3.75rem; }
}

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* Transforms */
.transform { transform: translateZ(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.hover\:rotate-12:hover { transform: rotate(12deg); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }

/* Hover States */
.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); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:shadow-primary-yellow\/25:hover { box-shadow: 0 10px 25px rgba(250, 204, 21, 0.25); }
.hover\:shadow-primary-yellow\/20:hover { box-shadow: 0 10px 25px rgba(250, 204, 21, 0.20); }
.hover\:text-primary-yellow:hover { color: var(--primary-yellow); }
.hover\:text-accent-gold:hover { color: var(--accent-gold); }

/* Border utilities */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }
.border-primary-yellow { border-color: var(--primary-yellow); }
.border-primary-yellow\/20 { border-color: rgba(250, 204, 21, 0.2); }
.border-primary-yellow\/30 { border-color: rgba(250, 204, 21, 0.3); }
.border-primary-yellow\/40 { border-color: rgba(250, 204, 21, 0.4); }
.border-primary-yellow\/50 { border-color: rgba(250, 204, 21, 0.5); }

/* Rounded corners */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Additional spacing utilities */
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Additional padding utilities */
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }

/* Additional margin utilities */
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

/* Additional positioning utilities */
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }

/* Additional z-index utilities */
.z-0 { z-index: 0; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }

/* Additional color utilities */
.text-slate-900 { color: rgb(15, 23, 42); }

/* Custom background size for gradients */
.bg-\[length\:200\%_200\%\] { background-size: 200% 200%; }

/* Additional overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Cursor utilities */
.cursor-pointer { cursor: pointer; }

/* Additional width/height utilities */
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }

/* Group hover utilities */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:rotate-12 { transform: rotate(12deg); }
.group:hover .group-hover\:text-accent-gold { color: var(--accent-gold); }

/* Additional responsive font sizes */
@media (min-width: 640px) {
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:text-2xl { font-size: 1.5rem; }
}

@media (min-width: 1280px) {
    .xl\:text-6xl { font-size: 3.75rem; }
    .xl\:text-7xl { font-size: 4.5rem; }
    .xl\:text-8xl { font-size: 6rem; }
}

/* Additional width utilities */
.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%; }

/* Additional height utilities */
.h-1\/2 { height: 50%; }
.h-1\/3 { height: 33.333333%; }
.h-2\/3 { height: 66.666667%; }
.h-1\/4 { height: 25%; }
.h-3\/4 { height: 75%; }

/* Additional max-width utilities */
.max-w-none { max-width: none; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }

/* Opacity utilities */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* Visibility utilities */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Line height utilities */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }

/* Letter spacing */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }

/* Scroll Animation Utilities */
.section-enter {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-enter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Global Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Critical Image Class for performance */
.critical-image {
    display: block;
    width: auto;
    height: auto;
}

/* Space utilities for responsive gaps */
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-x-12 > * + * { margin-left: 3rem; }
.space-x-16 > * + * { margin-left: 4rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Transform utilities */
.transform { transform: translateZ(0); }
.translate-x-1\/2 { transform: translateX(50%); }
.translate-y-1\/2 { transform: translateY(50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

/* Hover transform utilities */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:-translate-y-3:hover { transform: translateY(-0.75rem); }
.hover\:-translate-y-4:hover { transform: translateY(-1rem); }

/* Box shadow utilities */
.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); }
.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); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Specific shadow utilities with theme colors */
.hover\:shadow-primary-yellow\/25:hover { 
    box-shadow: 0 20px 25px -5px rgba(250, 204, 21, 0.25), 0 10px 10px -5px rgba(250, 204, 21, 0.1); 
}
.hover\:shadow-primary-yellow\/20:hover { 
    box-shadow: 0 25px 50px -12px rgba(250, 204, 21, 0.2); 
}

/* Background gradient utilities */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-primary-yellow { --tw-gradient-from: var(--primary-yellow); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.via-accent-gold { --tw-gradient-via: var(--accent-gold); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }
.to-primary-yellow { --tw-gradient-to: var(--primary-yellow); }
.to-accent-gold { --tw-gradient-to: var(--accent-gold); }
.from-primary-blue\/20 { --tw-gradient-from: rgba(30, 58, 138, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); }
.to-secondary-blue\/10 { --tw-gradient-to: rgba(59, 130, 246, 0.1); }
.from-dark-space\/50 { --tw-gradient-from: rgba(15, 23, 42, 0.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.to-primary-blue\/20 { --tw-gradient-to: rgba(30, 58, 138, 0.2); }

/* Text gradient utilities */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent; }

/* Responsive utilities */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:space-x-12 > * + * { margin-left: 3rem; }
    .md\:space-x-16 > * + * { margin-left: 4rem; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Additional responsive text sizes */
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4.5rem; }

/* Font weights */
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-semibold { font-weight: 600; }

/* Text alignment */
.text-center { text-align: center; }

/* Leading (line-height) */
.leading-relaxed { line-height: 1.625; }

/* Rounded corners */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }

/* Border utilities */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-primary-yellow\/20 { border-color: rgba(250, 204, 21, 0.2); }
.border-primary-yellow\/30 { border-color: rgba(250, 204, 21, 0.3); }
.border-primary-yellow\/50 { border-color: rgba(250, 204, 21, 0.5); }
.border-primary-yellow { border-color: var(--primary-yellow); }

/* Background color utilities with opacity */
.bg-primary-yellow\/10 { background-color: rgba(250, 204, 21, 0.1); }
.bg-primary-yellow\/20 { background-color: rgba(250, 204, 21, 0.2); }
.bg-primary-yellow\/30 { background-color: rgba(250, 204, 21, 0.3); }
.bg-accent-gold\/20 { background-color: rgba(245, 158, 11, 0.2); }
.bg-primary-blue\/20 { background-color: rgba(30, 58, 138, 0.2); }
.bg-secondary-blue\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-secondary-blue\/30 { background-color: rgba(59, 130, 246, 0.3); }

/* Hover background colors */
.hover\:bg-primary-yellow:hover { background-color: var(--primary-yellow); }
.hover\:bg-primary-yellow\/20:hover { background-color: rgba(250, 204, 21, 0.2); }

/* Text colors */
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-primary-yellow { color: var(--primary-yellow); }
.text-primary-blue { color: var(--primary-blue); }
.text-accent-gold { color: var(--accent-gold); }

/* Hover text colors */
.hover\:text-primary-yellow:hover { color: var(--primary-yellow); }
.hover\:text-accent-gold:hover { color: var(--accent-gold); }
.hover\:text-primary-blue:hover { color: var(--primary-blue); }

/* Transition utilities */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }

/* Gradient from/to utilities for opacity values */
.from-primary-yellow\/10 { --tw-gradient-from: rgba(250, 204, 21, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.to-accent-gold\/5 { --tw-gradient-to: rgba(245, 158, 11, 0.05); }
.from-secondary-blue\/10 { --tw-gradient-from: rgba(59, 130, 246, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-primary-blue\/5 { --tw-gradient-to: rgba(30, 58, 138, 0.05); }
.from-accent-gold\/5 { --tw-gradient-from: rgba(245, 158, 11, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }
.to-primary-yellow\/5 { --tw-gradient-to: rgba(250, 204, 21, 0.05); }

/* Negative positioning utilities */
.-top-40 { top: -10rem; }
.-right-40 { right: -10rem; }
.-bottom-40 { bottom: -10rem; }
.-left-40 { left: -10rem; }

/* Additional rotation utilities */
.rotate-1 { transform: rotate(1deg); }
.-rotate-1 { transform: rotate(-1deg); }

/* Hover rotation utilities */
.hover\:rotate-1:hover { transform: rotate(1deg); }
.hover\:-rotate-1:hover { transform: rotate(-1deg); }

/* Additional hover transform utilities */
.hover\:scale-110:hover { transform: scale(1.1); }

/* Transition utilities for transform */
.transition-transform { transition: transform 0.3s ease; }

/* Inline utilities */
.inline-block { display: inline-block; }

/* Margin bottom utilities */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }

/* Position fractional utilities */
.top-1\/3 { top: 33.333333%; }
.right-1\/3 { right: 33.333333%; }

/* Group hover scale utilities (for compatibility) */
.group-hover\:scale-110 { transition: transform 0.3s ease; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group-hover\:scale-105 { transition: transform 0.3s ease; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group-hover\:rotate-12 { transition: transform 0.3s ease; }
.group:hover .group-hover\:rotate-12 { transform: rotate(12deg); }
.group-hover\:text-accent-gold { transition: color 0.3s ease; }
.group:hover .group-hover\:text-accent-gold { color: var(--accent-gold); }

/* Additional compatibility utilities */
.bg-dark-bg { background-color: var(--dark-space); }
.font-body { font-family: var(--font-primary); }

/* Additional delay utilities for animations */
.delay-1s { animation-delay: 1s; }
.delay-2s { animation-delay: 2s; }
.delay-4s { animation-delay: 4s; }

/* Additional border utilities */
.border-primary-yellow\/40 { border-color: rgba(250, 204, 21, 0.4); }

/* Additional position utilities */
.bottom-32 { bottom: 8rem; }
.left-1\/4 { left: 25%; }

/* Additional gradient utilities */
.bg-gradient-radial { background-image: radial-gradient(var(--tw-gradient-stops)); }
.from-primary-yellow\/20 { --tw-gradient-from: rgba(250, 204, 21, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.from-primary-blue\/30 { --tw-gradient-from: rgba(30, 58, 138, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.via-dark-bg { --tw-gradient-via: var(--dark-space); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }

/* Additional padding utilities */
.pt-20 { padding-top: 5rem; }
