/* ============================================
   Hoffmann Ltd - Modern Business Website
   ============================================ */

/* ============================================
   1. CSS Custom Properties (Variables)
   ============================================ */
:root {
    /* Primary Colors */
    --primary-50: #E6FFFA;
    --primary-100: #B2F5EA;
    --primary-200: #81E6D9;
    --primary-300: #4FD1C5;
    --primary-400: #38B2AC;
    --primary-500: #00A5A5;
    --primary-600: #008B8B;
    --primary-700: #007A7B;
    --primary-800: #006666;
    --primary-900: #005252;

    /* Accent Colors */
    --accent-coral: #FF6B6B;
    --accent-gold: #F4D03F;
    --accent-peach: #FFEAA7;

    /* Dark Theme Colors */
    --dark-50: #E8EDF5;
    --dark-100: #C5D1E5;
    --dark-200: #9FB3D4;
    --dark-300: #7A95C3;
    --dark-400: #5477B2;
    --dark-500: #1E293B;
    --dark-600: #0F172A;
    --dark-700: #0D1424;
    --dark-800: #0A0F1A;
    --dark-900: #050810;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --tracking-tight: -0.02em;
    --tracking-wide: 0.01em;

    /* Spacing */
    --section-padding: 10rem;
    --container-padding: 2rem;
    --gap-default: 2rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-primary: 0 20px 40px -15px rgba(0, 165, 165, 0.4);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 1.875rem;
    --radius-full: 9999px;
}

/* ============================================
   2. Base Styles & Reset
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent font scaling issues on mobile landscape */
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--dark-600);
    color: white;
    overflow-x: hidden;
    line-height: 1.7;
    letter-spacing: var(--tracking-wide);
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: var(--tracking-tight);
    line-height: 1.2;
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-500), var(--primary-700));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-700), var(--primary-800));
}

/* ============================================
   4. Glassmorphism Effects
   ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-glass);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-glass);
}

/* ============================================
   5. Gradient Utilities
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-300) 50%, var(--accent-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animated-gradient {
    background: linear-gradient(-45deg, var(--dark-600), var(--dark-500), var(--primary-500), var(--primary-700), var(--accent-coral));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.mesh-gradient {
    background:
        radial-gradient(at 0% 0%, rgba(15, 23, 42, 1) 0%, transparent 50%),
        radial-gradient(at 40% 20%, rgba(0, 165, 165, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(79, 209, 197, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(0, 122, 123, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(255, 107, 107, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(244, 208, 63, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(0, 165, 165, 0.1) 0px, transparent 50%);
    background-color: var(--dark-600);
}

.stat-number {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   6. Animations
   ============================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-gradient {
    animation: gradient 8s ease infinite;
}

/* ============================================
   7. Card Styles
   ============================================ */
.card-hover {
    transition: all var(--transition-slow);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 165, 165, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

/* ============================================
   8. Floating Orbs
   ============================================ */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

/* ============================================
   9. Button Styles
   ============================================ */
.btn-shine {
    position: relative;
    overflow: hidden;
    /* Ensure minimum touch target size for mobile */
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-shine::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-shine:hover::before {
    left: 100%;
}

/* ============================================
   10. Glow & Shadow Effects
   ============================================ */
.glow {
    box-shadow: 0 0 40px rgba(0, 165, 165, 0.3);
}

.shadow-primary {
    box-shadow: var(--shadow-primary);
}

/* ============================================
   11. Noise Texture
   ============================================ */
.noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* ============================================
   11b. Hero Grid Pattern (Themeable)
   ============================================ */
/* Hide pattern by default to prevent flash */
.hero-pattern {
    opacity: 0;
    transition: opacity 0.1s ease;
}

/* Show pattern once theme is applied */
html.dark .hero-pattern,
html.light .hero-pattern {
    opacity: 1;
}

/* Dark mode pattern (subtle grainy white crosses) */
html.dark .hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.015; /* Very subtle */
    filter: blur(0.5px) contrast(0.8); /* Grainy effect */
}

/* ============================================
   12. Section Utilities
   ============================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 165, 165, 0.3), transparent);
}

/* ============================================
   13. Icon Container
   ============================================ */
.icon-container {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
}

/* ============================================
   14. Form Styles
   ============================================ */
.input-modern {
    transition: all var(--transition-normal);
}

.input-modern:focus {
    box-shadow: 0 0 0 3px rgba(0, 165, 165, 0.2);
    outline: none;
}

/* Custom Checkbox */
input[type="checkbox"].peer {
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
}

input[type="checkbox"]:checked + div {
    background-color: var(--primary-500);
    border-color: var(--primary-500);
}

input[type="checkbox"]:focus-visible + div {
    box-shadow: 0 0 0 2px var(--dark-600), 0 0 0 4px var(--primary-500);
}

/* ============================================
   15. Animated Border
   ============================================ */
.animated-border {
    position: relative;
}

.animated-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-500), var(--primary-300), var(--accent-coral), var(--accent-gold), var(--primary-500));
    background-size: 300% 300%;
    animation: gradient 3s ease infinite;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.animated-border:hover::before {
    opacity: 1;
}

/* ============================================
   16. Skip Link (Accessibility)
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================
   17. Custom Cursor (Desktop)
   ============================================ */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--primary-400);
    pointer-events: none;
    z-index: 50;
    mix-blend-mode: difference;
    transition: transform var(--transition-fast);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.custom-cursor.active {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--accent-coral);
}

/* ============================================
   18. Loading State
   ============================================ */
body.loaded {
    /* Add any post-load styles here */
}

/* ============================================
   19. Responsive Helpers
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 5rem;
        --container-padding: 1.5rem;
    }
    
    .custom-cursor {
        display: none;
    }

    /* Improve touch targets on mobile */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Adjust spacing for better mobile readability */
    p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    h1 {
        font-size: 2.75rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 2.25rem;
    }

    /* Service card mobile optimizations */
    .service-card > div {
        padding: 1.5rem !important;
    }

    .service-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-card ul li {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-card .w-16 {
        width: 3rem !important;
        height: 3rem !important;
    }

    .service-card svg.w-8 {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }

    .service-card .absolute.bottom-8.right-8 {
        bottom: 1rem !important;
        right: 1rem !important;
    }

    /* Reduce gap between service cards for better stacking on mobile */
    #services .grid {
        gap: 1rem !important;
    }
}

/* ============================================
   20. 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;
    }
    
    .orb,
    .animate-float,
    .animate-pulse-slow,
    .animate-gradient {
        animation: none;
    }
}

/* ============================================
   21. Focus Styles (Accessibility)
   ============================================ */
:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

/* ============================================
   22. Selection Styles
   ============================================ */
::selection {
    background-color: var(--primary-500);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-500);
    color: white;
}

/* ============================================
   23. Print Styles
   ============================================ */
@media print {
    .glass,
    .glass-dark {
        background: white;
        border: 1px solid #ccc;
    }
    
    .gradient-text {
        -webkit-text-fill-color: var(--primary-700);
    }
    
    .orb,
    .noise::before {
        display: none;
    }
    
    nav,
    #scroll-to-top {
        display: none;
    }
}

/* ============================================
   24. Dark Mode Enhancements
   ============================================ */

/* Dark Mode: Enhanced depth and texture */
html.dark body {
    background-color: #0F172A; /* Rich dark blue */
    color: white;
}

/* Dark Mode: Enhanced mesh gradient with richer texture */
html.dark .mesh-gradient {
    background:
        /* Enhanced dark gradients with more layers */
        radial-gradient(at 0% 0%, rgba(15, 23, 42, 1) 0%, transparent 50%),
        radial-gradient(at 40% 20%, rgba(0, 165, 165, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(79, 209, 197, 0.18) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(0, 122, 123, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(255, 107, 107, 0.12) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(244, 208, 63, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(0, 165, 165, 0.15) 0px, transparent 50%),
        /* Additional depth layers */
        radial-gradient(at 50% 30%, rgba(15, 23, 42, 0.8) 0%, transparent 40%),
        radial-gradient(at 20% 80%, rgba(0, 165, 165, 0.1) 0%, transparent 35%);
    background-color: #0F172A;
}

/* Dark Mode: Hero pattern with subtle texture */
html.dark .hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.03;
}

/* Dark Mode: Enhanced noise texture */
html.dark .noise::before {
    opacity: 0.04;
    mix-blend-mode: screen;
}

/* Dark Mode: Enhanced glass effects with depth */
html.dark .glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 16px -2px rgba(0, 0, 0, 0.4),
        0 2px 4px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

html.dark .glass-dark {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 12px -2px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Dark Mode: Enhanced service cards */
html.dark .service-card > div {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 50%, rgba(30, 41, 59, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 20px -4px rgba(0, 0, 0, 0.4),
        0 2px 6px -2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay for dark mode cards */
html.dark .service-card > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

/* Service card hover effect - lift and glow */
html.dark .service-card:hover > div {
    transform: translateY(-6px);
    box-shadow:
        0 12px 40px -8px rgba(0, 165, 165, 0.3),
        0 8px 20px -6px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 165, 165, 0.2);
}

/* Dark Mode: Enhanced testimonials */
html.dark .testimonial-card,
html.dark #testimonials .glass {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px -8px rgba(0, 0, 0, 0.5),
        0 4px 12px -4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Testimonial navigation buttons in dark mode */
html.dark #testimonials button.glass {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.4);
}

html.dark #testimonials button.glass:hover {
    background: linear-gradient(145deg, rgba(0, 165, 165, 0.1), rgba(79, 209, 197, 0.05));
    border-color: rgba(0, 165, 165, 0.3);
}

/* Dark Mode: Enhanced contact form */
html.dark #contact .glass {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 40px -8px rgba(0, 0, 0, 0.5),
        0 4px 16px -4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Contact checkboxes in dark mode */
html.dark #contact label.rounded-xl.bg-white\/5 {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

html.dark #contact label.rounded-xl:hover {
    background: linear-gradient(145deg, rgba(0, 165, 165, 0.08), rgba(79, 209, 197, 0.04)) !important;
    border-color: rgba(0, 165, 165, 0.25) !important;
}

/* Contact info cards in dark mode */
html.dark #contact .p-4.rounded-2xl.bg-white\/5 {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow:
        0 4px 16px -4px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

html.dark #contact .p-4.rounded-2xl:hover {
    background: linear-gradient(145deg, rgba(0, 165, 165, 0.08), rgba(79, 209, 197, 0.04)) !important;
    border-color: rgba(0, 165, 165, 0.25) !important;
    box-shadow:
        0 8px 24px -6px rgba(0, 165, 165, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Dark Mode: Enhanced orbs */
html.dark .orb {
    opacity: 0.5;
    filter: blur(80px);
}

html.dark .orb.bg-primary-500 {
    background: linear-gradient(135deg, rgba(0, 165, 165, 0.8), rgba(79, 209, 197, 0.6));
}

html.dark .orb.bg-accent-coral {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.7), rgba(255, 150, 150, 0.5));
}

html.dark .orb.bg-primary-300 {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.7), rgba(129, 230, 217, 0.5));
}

/* Dark Mode: Enhanced shadows */
html.dark .shadow-lg {
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.5),
        0 4px 10px -3px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

html.dark .shadow-primary-500\/25,
html.dark .shadow-primary-500\/30 {
    box-shadow:
        0 10px 40px -10px rgba(0, 165, 165, 0.4),
        0 4px 16px -4px rgba(0, 165, 165, 0.3);
}

/* About section stats cards in dark mode */
html.dark #about .bg-white\/5 {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 12px -4px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* About section visual element in dark mode */
html.dark #about .mesh-gradient {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(0, 165, 165, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 107, 107, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(79, 209, 197, 0.12) 0%, transparent 60%);
    background-color: #0F172A;
}

/* Dark Mode: Enhanced scrollbar */
html.dark ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

html.dark ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-500), var(--primary-700));
}

html.dark ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-700), var(--primary-800));
}

/* Dark Mode: Enhanced selection */
html.dark ::selection {
    background-color: rgba(0, 165, 165, 0.3);
    color: white;
}

html.dark ::-moz-selection {
    background-color: rgba(0, 165, 165, 0.3);
    color: white;
}

/* ============================================
   24. Light Mode Styles
   ============================================ */

/* Light Mode: Warm off-white base with subtle texture for eye comfort */
html.light body {
    background-color: #F5F5F0; /* Warm off-white, easier on eyes than pure white */
    color: #2D3748; /* Softer than pure black for reduced strain */
}

html.light .bg-dark-600 {
    background-color: #F5F5F0;
}

html.light .bg-dark-700 {
    background-color: #E8E8E3; /* Warm gray */
}

html.light .bg-dark-500 {
    background-color: #EFEFEA;
}

html.light .text-white {
    color: #2D3748;
}

html.light .text-white\/70,
html.light .text-white\/60,
html.light .text-white\/50,
html.light .text-white\/40 {
    color: #64748B;
}

html.light .text-white\/80 {
    color: #4A5568;
}

/* Light Mode: Enhanced glass effects with subtle depth */
html.light .glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 165, 165, 0.15);
    box-shadow:
        0 4px 16px -2px rgba(0, 0, 0, 0.08),
        0 2px 4px -1px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
}

html.light .glass-dark {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 165, 165, 0.12);
    box-shadow:
        0 4px 12px -2px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
}

html.light .bg-white\/5,
html.light .bg-white\/10 {
    background-color: rgba(0, 165, 165, 0.04);
}

html.light .border-white\/5,
html.light .border-white\/10,
html.light .border-white\/20 {
    border-color: rgba(0, 165, 165, 0.12);
}

html.light .hover\:bg-white\/10:hover,
html.light .hover\:bg-white\/20:hover {
    background-color: rgba(0, 165, 165, 0.08);
}

/* Light Mode: Rich textured mesh gradient with Caribbean warmth */
html.light .mesh-gradient {
    background:
        /* Subtle paper texture overlay */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        /* Teal/turquoise highlights */
        radial-gradient(ellipse at 20% 20%, rgba(0, 165, 165, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 15%, rgba(79, 209, 197, 0.15) 0%, transparent 40%),
        /* Soft coral/gold accents */
        radial-gradient(ellipse at 70% 60%, rgba(255, 107, 107, 0.1) 0%, transparent 35%),
        radial-gradient(ellipse at 10% 80%, rgba(244, 208, 63, 0.12) 0%, transparent 40%),
        /* Deep teal anchor */
        radial-gradient(ellipse at 50% 100%, rgba(0, 122, 123, 0.08) 0%, transparent 50%),
        /* Secondary highlights */
        radial-gradient(ellipse at 90% 90%, rgba(0, 165, 165, 0.1) 0%, transparent 35%),
        radial-gradient(ellipse at 5% 40%, rgba(79, 209, 197, 0.08) 0%, transparent 30%);
    background-color: #E8F4F3; /* Soft teal-tinted cream */
    background-blend-mode: overlay, normal, normal, normal, normal, normal, normal, normal;
}

/* Light Mode: Hero pattern with visible texture */
html.light .hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23008B8B' fill-opacity='0.6'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.06;
}

/* Light Mode: Enhanced noise texture for paper-like feel */
html.light .noise::before {
    opacity: 0.04;
    mix-blend-mode: multiply;
}

html.light .from-dark-500\/80,
html.light .to-dark-600 {
    background: linear-gradient(to bottom right, #FFFFFF, #F0F4F3);
}

html.light .shadow-lg {
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.08),
        0 4px 10px -3px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 165, 165, 0.05);
}

html.light .shadow-primary-500\/25,
html.light .shadow-primary-500\/30 {
    box-shadow:
        0 10px 40px -10px rgba(0, 165, 165, 0.25),
        0 4px 16px -4px rgba(0, 165, 165, 0.15);
}

/* Footer always stays dark regardless of theme */
.footer-always-dark {
    background-color: #0D1424 !important;
    color: white !important;
}

.footer-always-dark * {
    color: inherit;
}

.footer-always-dark h3,
.footer-always-dark h4,
.footer-always-dark .font-medium,
.footer-always-dark .font-bold,
.footer-always-dark .font-semibold {
    color: white !important;
}

.footer-always-dark .text-white {
    color: white !important;
}

.footer-always-dark .text-white\/80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-always-dark .text-white\/70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-always-dark .text-white\/60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-always-dark .text-white\/50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-always-dark .text-white\/40 {
    color: rgba(255, 255, 255, 0.4) !important;
}

.footer-always-dark .gradient-text {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-300) 50%, var(--accent-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-always-dark .bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.footer-always-dark .border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.footer-always-dark .border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-always-dark a:hover {
    color: var(--primary-400) !important;
}

/* Ensure footer keeps dark background in light mode */
html.light .footer-always-dark {
    background-color: #0D1424 !important;
}

html.light .footer-always-dark,
html.light .footer-always-dark p,
html.light .footer-always-dark span,
html.light .footer-always-dark a,
html.light .footer-always-dark li {
    color: rgba(255, 255, 255, 0.5) !important;
}

html.light .footer-always-dark h3,
html.light .footer-always-dark h4,
html.light .footer-always-dark .font-medium,
html.light .footer-always-dark .font-bold {
    color: white !important;
}

html.light .footer-always-dark .text-white\/70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Light mode orbs - visible but subtle, adds depth */
html.light .orb {
    opacity: 0.25;
    filter: blur(80px);
}

html.light .orb.bg-primary-500 {
    background: linear-gradient(135deg, rgba(0, 165, 165, 0.6), rgba(79, 209, 197, 0.4));
}

html.light .orb.bg-accent-coral {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.5), rgba(255, 150, 150, 0.3));
}

html.light .orb.bg-primary-300 {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.5), rgba(129, 230, 217, 0.3));
}

/* Light mode input fields with subtle depth */
html.light .input-modern {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 165, 165, 0.15);
    color: #2D3748;
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.04),
        0 1px 0 rgba(255, 255, 255, 0.8);
}

html.light .input-modern::placeholder {
    color: #94A3B8;
}

html.light .input-modern:focus {
    border-color: var(--primary-500);
    background-color: white;
    box-shadow:
        0 0 0 3px rgba(0, 165, 165, 0.15),
        inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* Light mode service cards - elevated with rich texture */
html.light .service-card > div {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAF9 20%, #F0F7F6 40%, #E8F4F3 60%, #F0F7F6 80%, #F8FAF9 100%);
    border: 1px solid rgba(0, 165, 165, 0.15);
    box-shadow:
        0 4px 20px -4px rgba(0, 0, 0, 0.08),
        0 2px 6px -2px rgba(0, 0, 0, 0.04),
        0 1px 3px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 165, 165, 0.05);
    position: relative;
    overflow: hidden;
}

/* Enhanced gradient overlay for light mode cards */
html.light .service-card > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

/* Service card hover effect - lift and glow */
html.light .service-card:hover > div {
    transform: translateY(-6px);
    box-shadow:
        0 12px 40px -8px rgba(0, 165, 165, 0.2),
        0 8px 20px -6px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 165, 165, 0.2);
}

/* Service card text in light mode - ensure visibility */
html.light .service-card h3 {
    color: #1E3A3A !important;
}

html.light .service-card p {
    color: #4A5568 !important;
}

html.light .service-card li,
html.light .service-card ul li {
    color: #4A5568 !important;
}

/* Service card hover states in light mode */
html.light .service-card:hover h3 {
    color: var(--primary-700) !important;
}

html.light .service-card:hover li,
html.light .service-card:hover ul li,
html.light .service-card .group:hover li {
    color: #2D3748 !important;
}

/* Override Tailwind's text-white classes on service cards in light mode */
html.light .service-card .text-white\/50,
html.light .service-card .text-white\/60,
html.light .service-card .text-white\/70 {
    color: #4A5568 !important;
}

html.light .service-card .group-hover\:text-white\/70:hover,
html.light .service-card:hover .text-white\/50,
html.light .service-card:hover .text-white\/60,
html.light .service-card:hover .text-white\/70 {
    color: #2D3748 !important;
}

/* Light mode testimonials - premium card feel */
html.light .testimonial-card,
html.light #testimonials .glass {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAF9 25%, #F0F7F6 50%, #E8F4F3 75%, #F0F7F6 100%);
    border: 1px solid rgba(0, 165, 165, 0.15);
    box-shadow:
        0 8px 32px -8px rgba(0, 0, 0, 0.1),
        0 4px 12px -4px rgba(0, 0, 0, 0.05),
        0 2px 8px -2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 165, 165, 0.05);
}

/* Testimonial text visibility in light mode */
html.light #testimonials .text-white\/90,
html.light #testimonials blockquote {
    color: #1E3A3A !important;
}

html.light #testimonials .text-white\/60,
html.light #testimonials .text-white\/70 {
    color: #4A5568 !important;
}

html.light #testimonials .font-semibold,
html.light #testimonials .font-display {
    color: #1E3A3A !important;
}

html.light #testimonials .text-primary-400 {
    color: var(--primary-600) !important;
}

html.light #testimonials .text-accent-coral {
    color: #E85555 !important;
}

html.light #testimonials .text-accent-gold {
    color: #C9A000 !important;
}

/* Testimonial navigation buttons in light mode - subtle teal accent */
html.light #testimonials button.glass {
    background: linear-gradient(145deg, #FFFFFF, #F5FAF9);
    border: 1px solid rgba(0, 165, 165, 0.12);
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.08);
}

html.light #testimonials button.glass:hover {
    background: linear-gradient(145deg, #E6FAF8, #D4F5F3);
    border-color: rgba(0, 165, 165, 0.25);
}

html.light #testimonials .text-white\/70 svg {
    color: #4A5568 !important;
}

html.light #testimonials button.glass:hover svg {
    color: var(--primary-600) !important;
}

/* Testimonial dots in light mode */
html.light #testimonials .bg-white\/20 {
    background-color: rgba(0, 165, 165, 0.2) !important;
}

html.light #testimonials .hover\:bg-white\/40:hover {
    background-color: rgba(0, 165, 165, 0.35) !important;
}

/* Stat numbers - vibrant gradient */
html.light .stat-number {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About section stats cards in light mode */
html.light #about .bg-white\/5 {
    background: linear-gradient(145deg, #FFFFFF 0%, #F5FAF9 50%, #F0F7F6 100%);
    border: 1px solid rgba(0, 165, 165, 0.15);
    box-shadow:
        0 4px 12px -4px rgba(0, 0, 0, 0.06),
        0 2px 6px -2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 165, 165, 0.05);
}

html.light #about .border-white\/10 {
    border-color: rgba(0, 165, 165, 0.1);
}

html.light #about .text-white\/60 {
    color: #4A5568 !important;
}

/* About section visual element in light mode */
html.light #about .mesh-gradient {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(0, 165, 165, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 107, 107, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(79, 209, 197, 0.1) 0%, transparent 60%);
    background-color: #E8F4F3;
}

/* Light mode theme toggle icon visibility */
html.light #sun-icon {
    display: block;
}

html.light #moon-icon {
    display: none;
}

html.dark #sun-icon {
    display: none;
}

html.dark #moon-icon {
    display: block;
}

/* Mobile Menu Light Mode */
html.light #mobile-menu {
    background-color: rgba(255, 255, 255, 0.98);
}

html.light .mobile-nav-link {
    color: #1E293B;
    border-color: rgba(0, 0, 0, 0.1);
}

html.light .mobile-nav-link:hover {
    color: var(--primary-600);
}

html.light #mobile-menu-button .bg-white {
    background-color: #1E293B;
}

/* Mobile Theme Toggle Light Mode */
html.light #mobile-theme-toggle {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

html.light #mobile-theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

html.light #mobile-theme-toggle .text-white\/70 {
    color: #475569 !important;
}

/* Mobile Menu Close Button Light Mode */
html.light #mobile-menu-close .text-white {
    color: #1E293B !important;
}

html.light #mobile-menu-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Contact Form Light Mode - Premium form styling */
html.light #contact .glass {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAF9 25%, #F0F7F6 50%, #E8F4F3 75%, #F0F7F6 100%);
    border: 1px solid rgba(0, 165, 165, 0.15);
    box-shadow:
        0 8px 40px -8px rgba(0, 0, 0, 0.1),
        0 4px 16px -4px rgba(0, 0, 0, 0.05),
        0 2px 10px -3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 165, 165, 0.05);
}

html.light #contact .text-white\/70,
html.light #contact .text-white\/60,
html.light #contact .text-white\/50 {
    color: #4A5568 !important;
}

html.light #contact .text-white {
    color: #1E3A3A !important;
}

/* Services Required Checkboxes Light Mode - subtle teal accent */
html.light #contact label.rounded-xl.bg-white\/5 {
    background: linear-gradient(145deg, #FFFFFF 0%, #F5FAF9 50%, #F0F7F6 100%) !important;
    border: 1px solid rgba(0, 165, 165, 0.15) !important;
    box-shadow:
        0 2px 6px -2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 165, 165, 0.03);
    transition: all 0.2s ease;
}

html.light #contact label.rounded-xl:hover {
    background: linear-gradient(145deg, #F0FAF8, #E8F5F3) !important;
    border-color: rgba(0, 165, 165, 0.2) !important;
}

html.light #contact input[type="checkbox"]:checked + div {
    background-color: var(--primary-500);
    border-color: var(--primary-500);
}

html.light #contact .peer-checked\:text-white {
    color: #1E3A3A !important;
}

html.light #contact .border-white\/30 {
    border-color: rgba(0, 165, 165, 0.15) !important;
}

/* Contact Info Cards Light Mode - elevated card design */
html.light #contact .p-4.rounded-2xl.bg-white\/5 {
    background: linear-gradient(145deg, #FFFFFF 0%, #F5FAF9 50%, #F0F7F6 100%) !important;
    border: 1px solid rgba(0, 165, 165, 0.15) !important;
    box-shadow:
        0 4px 16px -4px rgba(0, 0, 0, 0.06),
        0 2px 6px -2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 165, 165, 0.05);
    transition: all 0.3s ease;
}

html.light #contact .p-4.rounded-2xl:hover {
    background: linear-gradient(145deg, #F0FAF8, #E8F5F3) !important;
    border-color: rgba(0, 165, 165, 0.2) !important;
    box-shadow:
        0 8px 24px -6px rgba(0, 165, 165, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

html.light #contact .bg-primary-500\/20 {
    background: linear-gradient(135deg, rgba(0, 165, 165, 0.15), rgba(79, 209, 197, 0.1)) !important;
}

html.light #contact .group:hover .bg-primary-500\/20 {
    background: linear-gradient(135deg, rgba(0, 165, 165, 0.2), rgba(79, 209, 197, 0.15)) !important;
}

/* WhatsApp button light mode */
html.light #contact .bg-green-500\/20 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05)) !important;
}

html.light #contact .group:hover .bg-green-500\/20 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08)) !important;
}

html.light #contact .text-green-400 {
    color: #16a34a !important;
}

html.light #contact .hover\:text-green-400:hover {
    color: #16a34a !important;
}

/* Google Calendar button light mode */
html.light #contact .bg-blue-500\/20 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05)) !important;
}

html.light #contact .group:hover .bg-blue-500\/20 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.08)) !important;
}

html.light #contact .text-blue-400 {
    color: #2563eb !important;
}

html.light #contact .hover\:text-blue-400:hover {
    color: #2563eb !important;
}

/* Focus text color changes for contact cards */
.contact-phone:focus .text-white.font-medium,
.contact-email:focus .text-white.font-medium,
.contact-location:focus .text-white.font-medium {
    color: var(--primary-400) !important;
}

.contact-whatsapp:focus .text-white.font-medium {
    color: #16a34a !important;
}

.contact-calendar:focus .text-white.font-medium {
    color: #2563eb !important;
}

/* Light mode focus colors */
html.light .contact-phone:focus .text-white.font-medium,
html.light .contact-email:focus .text-white.font-medium,
html.light .contact-location:focus .text-white.font-medium {
    color: #38B2AC !important;
}

html.light .contact-whatsapp:focus .text-white.font-medium {
    color: #16a34a !important;
}

html.light .contact-calendar:focus .text-white.font-medium {
    color: #2563eb !important;
}

/* Contact section background gradient for light mode */
html.light #contact {
    background: linear-gradient(180deg, #F5F5F0 0%, #E8F4F3 50%, #F5F5F0 100%);
}

/* Success modal light mode */
html.light #success-modal > div {
    background-color: rgba(245, 245, 240, 0.95);
}

html.light #success-modal .glass {
    background: linear-gradient(145deg, #FFFFFF, #F5FAF9);
    border: 1px solid rgba(0, 165, 165, 0.15);
}

/* Scrollbar in light mode */
html.light ::-webkit-scrollbar-track {
    background: rgba(0, 165, 165, 0.05);
}

html.light ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-400), var(--primary-600));
}

html.light ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-500), var(--primary-700));
}

/* Selection color in light mode */
html.light ::selection {
    background-color: rgba(0, 165, 165, 0.25);
    color: #1E3A3A;
}

html.light ::-moz-selection {
    background-color: rgba(0, 165, 165, 0.25);
    color: #1E3A3A;
}