/* CSS Variables for Theme */
:root {
    /* Pastel Color Palette */
    --primary-color: #a8e6cf;
    --primary-dark: #7dd3a0;
    --secondary-color: #ffd3a5;
    --secondary-dark: #ffb347;
    --accent-color: #fd9bb5;
    --accent-dark: #f06292;
    --info-color: #a8d8ea;
    --info-dark: #79c2d0;
    --warning-color: #ffeaa7;
    --warning-dark: #fdcb6e;
    --success-color: #81ecec;
    --success-dark: #00b894;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #e9ecef;
    --dark-gray: #6c757d;
    --dark: #2d3436;
    --black: #000000;
    
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--warning-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    
    /* Glass Morphism Colors */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
    
    /* 3D Effects */
    --transform-lift: translateY(-8px);
    --transform-press: translateY(2px);
    --perspective: 1000px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: var(--light-gray);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
}

/* Button Styles - Global */
.btn,
.button,
button,
input[type='submit'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: var(--perspective);
}

.btn::before,
.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before,
.button:hover::before {
    left: 100%;
}

.btn:hover,
.button:hover,
button:hover {
    transform: var(--transform-lift) rotateX(5deg);
    box-shadow: var(--shadow-lg);
}

.btn:active,
.button:active,
button:active {
    transform: var(--transform-press) rotateX(-2deg);
}

/* Button Variants */
.btn.is-primary,
.button.is-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn.is-secondary,
.button.is-secondary {
    background: var(--gradient-secondary);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn.is-light,
.button.is-light {
    background: var(--glass-bg);
    color: var(--dark);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.btn.is-outlined,
.button.is-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn.is-outlined:hover,
.button.is-outlined:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Read More Links */
.read-more,
.btn-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after,
.btn-read-more::after {
    content: '→';
    margin-left: var(--spacing-xs);
    transition: transform 0.3s ease;
}

.read-more:hover,
.btn-read-more:hover {
    color: var(--accent-dark);
    transform: translateX(4px);
}

.read-more:hover::after,
.btn-read-more:hover::after {
    transform: translateX(4px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Sections */
.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section.has-background-light {
    background: var(--light-gray);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-item {
    color: var(--dark);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-item::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-item:hover {
    color: var(--primary-color);
    background: var(--glass-bg);
}

.navbar-item:hover::before {
    width: 80%;
}

.navbar-burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Container */
.main-container {
    margin-top: 70px;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero .title,
.hero .subtitle,
.hero p {
    color: var(--white) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-image-container {
    position: relative;
    transform-style: preserve-3d;
    perspective: var(--perspective);
    animation: float 6s ease-in-out infinite;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
}

.hero-image-container:hover img {
    transform: rotateY(-10deg) rotateX(0deg) scale(1.05);
}

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

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: var(--transform-lift) rotateX(2deg);
    box-shadow: var(--shadow-xl);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    margin: 0 auto;
}

.card:hover .image-container img {
    transform: scale(1.1) rotateZ(2deg);
}

.card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Feature Cards */
.feature-card {
    height: 100%;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.feature-card .card-content h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Cards */
.service-card {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::after {
    top: -75%;
    right: -75%;
    opacity: 1;
}

/* Team Cards */
.team-card {
    height: 100%;
    text-align: center;
}

.team-card .image-container {
    height: 300px;
    border-radius: 50%;
    width: 200px;
    margin: var(--spacing-lg) auto;
    overflow: hidden;
    position: relative;
}

.team-card .image-container img {
    border-radius: 50%;
}

.team-card .image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.team-card:hover .image-container::before {
    opacity: 0.3;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.testimonial-card .media-left .image {
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-card .media-left .image img {
    border-radius: 50%;
    object-fit: cover;
}

/* News Cards */
.news-card {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.news-card .card-image {
    position: relative;
    height: 200px;
}

.news-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

/* Pricing Cards */
.pricing-card {
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-card:hover {
    transform: var(--transform-lift) scale(1.02);
}

.pricing-card.featured:hover {
    transform: var(--transform-lift) scale(1.08);
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-lg) 0;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: var(--spacing-lg);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Timeline */
.timeline-container {
    position: relative;
    margin: var(--spacing-xl) 0;
}

.timeline {
    position: relative;
    padding-left: var(--spacing-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    padding-left: var(--spacing-lg);
}

.timeline-marker {
    position: absolute;
    left: -23px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--white);
}

.timeline-content:hover {
    transform: var(--transform-lift) rotateY(2deg);
    box-shadow: var(--shadow-lg);
}

/* Forms */
.contact-form {
    margin-top: var(--spacing-xl);
}

.field {
    margin-bottom: var(--spacing-lg);
}

.label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--dark);
}

.input,
.textarea,
.select select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.input:focus,
.textarea:focus,
.select select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.3);
    transform: var(--transform-lift);
}

.select {
    position: relative;
}

.select::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    pointer-events: none;
}

/* Contact Info */
.contact-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--glass-border);
}

.store-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 0 auto;
    display: block;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-links a:hover {
    transform: var(--transform-lift) rotateZ(5deg);
    color: var(--white);
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: var(--spacing-xl) 0 var(--spacing-lg);
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    position: relative;
}

.success-content {
    text-align: center;
    color: var(--white);
    padding: var(--spacing-xxl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    animation: successFloat 3s ease-in-out infinite;
}

@keyframes successFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
    padding-top: 100px;
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-content {
    display: flex;
    transition: transform 0.5s ease;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-image-container img {
        transform: none;
    }
    
    .team-card .image-container {
        width: 150px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xxl: 3rem;
        --spacing-xl: 2rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        padding: var(--spacing-md);
        flex-direction: column;
    }
    
    .navbar-menu.is-active {
        display: flex;
    }
    
    .navbar-burger {
        display: flex;
    }
    
    .navbar-burger.is-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .navbar-burger.is-active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-burger.is-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .columns {
        display: flex;
        flex-direction: column;
    }
    
    .column {
        flex: 1;
        margin-bottom: var(--spacing-md);
    }
    
    .timeline {
        padding-left: var(--spacing-md);
    }
    
    .timeline-item {
        padding-left: var(--spacing-sm);
    }
    
    .timeline-marker {
        left: -8px;
        width: 12px;
        height: 12px;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .btn,
    .button {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .card-content {
        padding: var(--spacing-md);
    }
    
    .contact-info {
        padding: var(--spacing-lg);
    }
}

/* Scroll Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

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

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: var(--spacing-md) auto;
}

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

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #007700;
        --secondary-color: #ff6600;
        --accent-color: #cc0066;
        --dark: #000000;
        --white: #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}