@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --radius: 0.65rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.141 0.005 285.823);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.141 0.005 285.823);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.141 0.005 285.823);
  --primary: oklch(0.637 0.237 25.331);
  --primary-foreground: oklch(0.971 0.013 17.38);
  --secondary: oklch(0.967 0.001 286.375);
  --secondary-foreground: oklch(0.21 0.006 285.885);
  --muted: oklch(0.967 0.001 286.375);
  --muted-foreground: oklch(0.552 0.016 285.938);
  --accent: oklch(0.967 0.001 286.375);
  --accent-foreground: oklch(0.21 0.006 285.885);
  --destructive: oklch(0.577 0.245 27.325);
  --border: oklch(0.92 0.004 286.32);
  --input: oklch(0.92 0.004 286.32);
  --ring: oklch(0.637 0.237 25.331);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.141 0.005 285.823);
  --sidebar-primary: oklch(0.637 0.237 25.331);
  --sidebar-primary-foreground: oklch(0.971 0.013 17.38);
  --sidebar-accent: oklch(0.967 0.001 286.375);
  --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
  --sidebar-border: oklch(0.92 0.004 286.32);
  --sidebar-ring: oklch(0.637 0.237 25.331);
}

.dark {
  --background: oklch(0.141 0.005 285.823);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.21 0.006 285.885);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.21 0.006 285.885);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.637 0.237 25.331);
  --primary-foreground: oklch(0.971 0.013 17.38);
  --secondary: oklch(0.274 0.006 286.033);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.274 0.006 286.033);
  --muted-foreground: oklch(0.705 0.015 286.067);
  --accent: oklch(0.274 0.006 286.033);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.704 0.191 22.216);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 15%);
  --ring: oklch(0.637 0.237 25.331);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.21 0.006 285.885);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.637 0.237 25.331);
  --sidebar-primary-foreground: oklch(0.971 0.013 17.38);
  --sidebar-accent: oklch(0.274 0.006 286.033);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(1 0 0 / 10%);
  --sidebar-ring: oklch(0.637 0.237 25.331);
}

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

body {
    background: var(--background);
    color: var(--foreground);
}

/* Shadcn-style Component Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* Button Variants */
.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.4);
}

.btn-primary:hover {
    background: color-mix(in oklch, var(--primary), black 10%);
    box-shadow: 0 6px 20px 0 rgba(239, 68, 68, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--accent-foreground);
    transform: translateY(-2px);
}

.btn-destructive {
    background: var(--destructive);
    color: var(--primary-foreground);
}

.btn-destructive:hover {
    background: color-mix(in oklch, var(--destructive), black 10%);
}

.btn-outline {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-lg {
    height: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.125rem;
    min-width: 280px;
}

.btn-md {
    height: 2.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.btn-sm {
    height: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.75rem;
}

/* Card Components */
.card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--card-foreground);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
    border-color: var(--ring);
}

.card-glass {
    background: color-mix(in oklch, var(--card), transparent 40%);
    backdrop-filter: blur(16px);
    border: 1px solid color-mix(in oklch, var(--border), transparent 50%);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.3),
        0 10px 10px -5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 color-mix(in oklch, white, transparent 90%);
}

.card-premium {
    background: linear-gradient(135deg, 
        color-mix(in oklch, var(--card), var(--primary) 10%), 
        var(--card));
    backdrop-filter: blur(24px);
    border: 1px solid color-mix(in oklch, var(--primary), transparent 70%);
    box-shadow: 
        0 25px 50px color-mix(in oklch, var(--primary), transparent 85%),
        0 0 0 1px color-mix(in oklch, var(--primary), transparent 90%),
        inset 0 1px 0 color-mix(in oklch, white, transparent 90%);
}

/* Badge Component */
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.2s;
}

.badge-default {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.badge-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px 0 color-mix(in oklch, var(--primary), transparent 60%);
}

.badge-destructive {
    background: var(--destructive);
    color: var(--primary-foreground);
}

.badge-outline {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
}

.badge-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

/* Icon Component */
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon-lg {
    width: 4rem;
    height: 4rem;
}

.icon-xl {
    width: 5rem;
    height: 5rem;
}

.icon-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 8px 32px color-mix(in oklch, var(--primary), transparent 70%);
}

.icon-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: 0 8px 32px color-mix(in oklch, var(--secondary), transparent 70%);
}

.icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px color-mix(in oklch, var(--primary), transparent 60%);
}

/* Background Gradients */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), black 20%));
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23111827" width="1200" height="800"/><g fill="%23374151" opacity="0.3"><circle cx="300" cy="200" r="100"/><circle cx="900" cy="600" r="150"/><circle cx="1100" cy="300" r="80"/></g></svg>');
    background-size: cover;
    background-position: center;
}

/* Glass Effect */
.glass-effect {
    background: color-mix(in oklch, var(--background), transparent 50%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
}

/* Glass Card */
.glass-card {
    background: color-mix(in oklch, var(--card), transparent 40%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Enhanced Glassmorphism Effects */
.glass-primary {
    background: linear-gradient(135deg, 
        color-mix(in oklch, var(--primary), transparent 90%) 0%, 
        color-mix(in oklch, var(--primary), transparent 95%) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid color-mix(in oklch, var(--primary), transparent 80%);
    box-shadow: 
        0 25px 50px color-mix(in oklch, var(--primary), transparent 90%),
        inset 0 1px 0 color-mix(in oklch, white, transparent 90%);
}

.glass-dark {
    background: color-mix(in oklch, black, transparent 60%);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* Input Components */
.input {
    display: flex;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--background);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--foreground);
    transition: all 0.2s;
}

.input:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--ring), transparent 90%);
}

.input::placeholder {
    color: var(--muted-foreground);
}

/* Textarea */
.textarea {
    display: flex;
    min-height: 80px;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--background);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--foreground);
    transition: all 0.2s;
    resize: none;
}

.textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--ring), transparent 90%);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

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

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

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

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

/* Color Classes */
.accent-red {
    color: var(--primary);
}

.accent-green {
    color: var(--chart-2);
}

.bg-accent-red {
    background-color: var(--primary);
}

.bg-accent-green {
    background-color: var(--chart-2);
}

/* Text Effects */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Pricing Cards */
.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--ring);
    box-shadow: 0 25px 50px color-mix(in oklch, var(--primary), transparent 85%);
}

.popular-badge {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: color-mix(in oklch, var(--primary), black 20%);
}

/* Focus States */
*:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-7xl {
        font-size: 3.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .grid {
        gap: 1rem;
    }
    
    .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Navigation Enhancements */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

/* Service Cards Specific Styling */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--primary), transparent 90%), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

/* Feature Icons Animation */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Success/Error Messages */
.success-message {
    background: var(--chart-2);
    color: white;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease-out;
}

.error-message {
    background: var(--destructive);
    color: var(--primary-foreground);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease-out;
}

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

/* Schedule Specific Styles */
.schedule-row {
    transition: background-color 0.3s ease;
}

.schedule-row:hover {
    background-color: color-mix(in oklch, var(--primary), transparent 90%);
}

/* Mobile Menu Transitions */
#mobileMenu {
    transition: all 0.3s ease;
}

#mobileMenu.hidden {
    opacity: 0;
    transform: translateY(-10px);
}

#mobileMenu:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

/* Dark mode class */
.dark {
    color-scheme: dark;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .glass-effect,
    nav,
    footer {
        display: none;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}-primary {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.1) 0%, 
        rgba(220, 38, 38, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 
        0 25px 50px rgba(239, 68, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

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

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

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

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

/* Color Classes */
.accent-red {
    color: #ef4444;
}

.accent-green {
    color: #10b981;
}

.bg-accent-red {
    background-color: #ef4444;
}

.bg-accent-green {
    background-color: #10b981;
}

/* Text Effects */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(145deg, #1f2937, #111827);
    border: 1px solid #374151;
}

.pricing-card:hover {
    border-color: #ef4444;
}

.popular-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Input Components */
.input {
    display: flex;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid rgba(75, 85, 99, 1);
    background-color: rgba(55, 65, 81, 1);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: white;
    transition: all 0.2s;
}

.input:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input::placeholder {
    color: rgba(156, 163, 175, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #ef4444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dc2626;
}

/* Focus States */
input:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-7xl {
        font-size: 3.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .grid {
        gap: 1rem;
    }
    
    .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Enhanced Button Styles */
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* Navigation Enhancements */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: #ef4444;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

/* Service Cards Specific Styling */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

/* Feature Icons Animation */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Form Styling Enhancements */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #ef4444;
    background-color: #374151;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #ef4444;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success/Error Messages */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease-out;
}

.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease-out;
}

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

/* Schedule Specific Styles */
.schedule-row {
    transition: background-color 0.3s ease;
}

.schedule-row:hover {
    background-color: rgba(239, 68, 68, 0.1);
}

/* Pricing Badge Animations */
.pricing-badge {
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Mobile Menu Transitions */
#mobileMenu {
    transition: all 0.3s ease;
}

#mobileMenu.hidden {
    opacity: 0;
    transform: translateY(-10px);
}

#mobileMenu:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .glass-effect {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid #ef4444;
    }
    
    .card-hover {
        border: 1px solid #ef4444;
    }
}

/* Dark Mode Optimizations */
@media (prefers-color-scheme: dark) {
    .hero-gradient {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);
    }
}

/* Print Styles */
@media print {
    .glass-effect,
    nav,
    footer {
        display: none;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}
