/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme Colors - Nexus Flow Inspired */
    --primary-color: #2563eb;
    --accent-color: #3b82f6;
    --secondary-color: #1e40af;
    --tertiary-color: #1d4ed8;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-overlay: rgba(37, 99, 235, 0.05);
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;
    --text-light: #64748b;
    
    /* Border & Shadow */
    --border-color: #e2e8f0;
    --shadow-light: rgba(15, 23, 42, 0.08);
    --shadow-medium: rgba(15, 23, 42, 0.12);
    --shadow-dark: rgba(15, 23, 42, 0.16);
    
    /* Success, Warning, Error */
    --success-color: #059669;
    --warning-color: #d97706;
    --error-color: #dc2626;
    
    /* Special Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

/* Dark Theme - Nexus Flow Inspired */
[data-theme="dark"] {
    /* Dark Theme Colors */
    --primary-color: #60a5fa;
    --accent-color: #3b82f6;
    --secondary-color: #2563eb;
    --tertiary-color: #1d4ed8;
    
    /* Background Colors */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-overlay: rgba(96, 165, 250, 0.1);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-inverse: #0f172a;
    --text-light: #cbd5e1;
    
    /* Border & Shadow */
    --border-color: #475569;
    --shadow-light: rgba(0, 0, 0, 0.25);
    --shadow-medium: rgba(0, 0, 0, 0.35);
    --shadow-dark: rgba(0, 0, 0, 0.45);
    
    /* Success, Warning, Error */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Special Colors */
    --white: #f8fafc;
    --gray-50: #334155;
    --gray-100: #475569;
    --gray-200: #64748b;
    --gray-300: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-500: #e2e8f0;
    --gray-600: #f1f5f9;
    --gray-700: #f8fafc;
    --gray-800: #ffffff;
    --gray-900: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - Nexus Flow Style */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1.25rem;
    letter-spacing: -0.05em;
}

[data-theme="dark"] .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Header */
.header {
    background: var(--bg-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-height: 70px;
}

/* Ensure consistent header appearance */
.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-icon {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    font-weight: bold;
}

.logo-text {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Hamburger animation when active */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Desktop menu - always visible */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    /* Desktop Hero spacing optimization */
    .hero {
        padding: 90px 0 70px;
        min-height: auto;
    }
    
    /* Desktop Solutions metrics alignment */
    .solutions-metrics {
        margin-top: 0;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-icon {
    transition: transform 0.3s ease;
}

[data-theme="dark"] .theme-icon {
    transform: rotate(180deg);
}

/* Buttons - Nexus Flow Style (No Gradients) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px 0 rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.08);
}

.btn-secondary:active {
    transform: translateY(0);
    background: var(--gray-100);
}

.btn-full {
    width: 100%;
}

/* Hero Section - Nexus Flow Style */
.hero {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 100px 0 80px;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

[data-theme="dark"] .hero {
    background: var(--bg-primary);
    color: var(--text-primary);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1.75rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--gray-900);
}

[data-theme="dark"] .hero-title {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-features {
    background: rgba(15, 23, 42, 0.06);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .hero-features {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.25rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.875rem;
    border-radius: 14px;
    min-width: 48px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

[data-theme="dark"] .feature-icon {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    border-color: var(--border-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .service-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.25rem;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.2);
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    color: var(--tertiary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    animation: fadeInScale 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.3) rotate(-90deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: var(--bg-primary);
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}


.solutions-features {
    margin-top: 0;
}

.solutions-feature {
    margin-bottom: 2rem;
}

.solutions-feature h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.solutions-feature p {
    color: var(--text-secondary);
}

.solutions-metrics {
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-primary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .solutions-metrics {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
}

.solutions-metrics h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.6s ease;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

.metric.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    opacity: 0;
    animation: countUp 1.2s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.3s + 0.4s);
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0;
    margin-top: 0.5rem;
    animation: fadeIn 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.3s + 0.8s);
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-item {
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.contact-icon {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-brand .logo-icon {
    background: var(--white);
    color: var(--primary-color);
}

.footer-logo-text {
    color: var(--white) !important;
}

.footer-author {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-right {
    text-align: right;
}

.footer-copyright {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.footer-tagline {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
    }
    
    .nav-brand {
        order: 1;
        flex: 1;
    }
    
    .nav-toggle {
        display: flex;
        order: 2;
        margin-right: 0.5rem;
        z-index: 1001;
    }
    
    .theme-toggle {
        display: flex;
        order: 3;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
        z-index: 1001;
    }
    
    .nav-menu {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px var(--shadow-medium);
        border-top: 1px solid var(--border-color);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .solutions-features {
        text-align: center;
    }
    
    .solutions-feature {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .solutions-metrics {
        padding: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.metric:hover {
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.theme-toggle:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Smooth transitions for theme switching */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* High contrast support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
        --shadow-dark: rgba(0, 0, 0, 0.7);
        --border-color: #000000;
    }
    
    [data-theme="dark"] {
        --border-color: #ffffff;
        --shadow-light: rgba(255, 255, 255, 0.3);
        --shadow-medium: rgba(255, 255, 255, 0.5);
        --shadow-dark: rgba(255, 255, 255, 0.7);
    }
}

/* Form Messages */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-message-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-color, #22c55e);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color, #ef4444);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

/* Button loading state */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form validation styles */
input:invalid,
textarea:invalid {
    border-color: var(--error-color, #ef4444);
}

input:valid,
textarea:valid {
    border-color: var(--success-color, #22c55e);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .theme-icon {
        transition: none !important;
    }
    
    .form-message {
        animation: none !important;
    }
}
