/* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 15px 25px;
            }
        }

        .logo {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-img {
            height: 40px;
            width: auto;
            display: block;
        }

        
        .logo-dot {
            width: 8px;
            height: 8px;
            background: #a8d735;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(168, 215, 53, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.8;
            }
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--orange);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            width: 45px;
            height: 45px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 20px;
        }

        .theme-toggle:hover {
            background: var(--orange);
            color: white;
            transform: rotate(180deg) scale(1.1);
            box-shadow: var(--shadow-orange);
        }

        .theme-icon {
            transition: all 0.3s;
            display: block;
        }

        @media (max-width: 768px) {
            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        /* Dropdown Arrow */
        .has-submenu > a::before {
            content: '▼';
            font-size: 9px;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .has-submenu:hover > a::before {
            transform: rotate(180deg);
        }

        /* Submenu Dropdown */
        .submenu {
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 12px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            z-index: 100;
        }

        .has-submenu:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu li {
            list-style: none;
        }

        .submenu a {
            display: block;
            padding: 12px 24px;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .submenu a::after {
            display: none;
        }

        .submenu a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s;
            display: inline-block;
        }

        .submenu a:hover {
            background: var(--orange-subtle);
            color: var(--orange);
            padding-left: 28px;
        }

        .submenu a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .cta-nav {
            padding: 10px 24px;
            background: var(--orange);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-orange);
        }

        .cta-nav:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px var(--orange-glow);
        }

        .cta-nav::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            position: relative;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .menu-toggle.active span:first-child {
            transform: rotate(45deg) translateY(8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:last-child {
            transform: rotate(-45deg) translateY(-8px);
        }

        /* Close text when menu is open */
        .menu-toggle::before {
            content: '';
            position: absolute;
            right: 45px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'General Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }

        .menu-toggle.active::before {
            content: 'close';
            opacity: 1;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            /* Scrollable Transparent Mobile Menu */
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 50;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 10px;
                transform: translateX(100%);
                opacity: 0;
                transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
                pointer-events: none;
                padding: 80px 40px 40px 40px;
                z-index: 999;
                overflow-y: scroll;
                -webkit-overflow-scrolling: touch;
            }

            body.dark-theme .nav-links {
                background: rgba(15, 15, 20, 0.95);
            }

            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                pointer-events: all;
            }

            /* Menu Items - Left Aligned, Top of Menu */
            .nav-links li {
                position: relative;
                border-bottom: none;
                padding: 0;
                list-style: none;
                width: 100%;
            }

            .nav-links > li > a {
                font-size: 20px;
                font-family: 'Cabinet Grotesk', sans-serif;
                font-weight: 800;
                opacity: 1;
                transform: none;
                transition: all 0.3s;
                padding: 15px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: left;
                color: var(--text-dark);
                line-height: 1.1;
            }

            .nav-links > li > a:hover {
                color: var(--orange);
            }

            /* Services Submenu Arrow */
            .has-submenu > a::before {
                display: none !important;
            }

            .has-submenu > a::after {
                content: '+';
                font-size: 20px;
                font-weight: 300;
                transition: transform 0.3s;
                margin-left: auto;
                display: inline-block;
                line-height: 1;
            }

            .has-submenu.active > a::after {
                content: '−';
            }

            /* Submenu Accordion */
            .submenu {
                position: static !important;
                opacity: 0;
                visibility: hidden;
                max-height: 1px;
                overflow: hidden;
                background: transparent;
                backdrop-filter: none;
                border: none;
                box-shadow: none;
                padding: 0;
                margin: 0;
                transform: none !important;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border-radius: 0;
                display: block !important;
            }

            .submenu.active {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
                padding: 10px 0 10px 30px;
            }

            .submenu li {
                border-bottom: none;
                padding: 0;
                list-style: none;
            }

            .submenu a {
                font-size: 36px !important;
                padding: 10px 0 !important;
                text-align: left;
                font-family: 'Cabinet Grotesk', sans-serif;
                font-weight: 600;
                color: var(--text-gray) !important;
                display: block !important;
                white-space: normal !important;
                line-height: 1.2;
            }

            .submenu a::before {
                display: none !important;
            }

            .submenu a::after {
                display: none !important;
            }

            .submenu a:hover {
                color: var(--orange) !important;
                background: transparent !important;
                padding: 10px 0 !important;
            }

            /* Theme Toggle Mobile */
            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            /* CTA Button Mobile - Large */
            .cta-nav {
                font-size: 48px !important;
                padding: 15px 0 !important;
                background: transparent !important;
                color: var(--orange) !important;
                border: none !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                text-align: left !important;
                font-family: 'Cabinet Grotesk', sans-serif !important;
                font-weight: 800 !important;
                transform: none !important;
                display: block;
                line-height: 1.1;
            }

            .cta-nav:hover {
                background: transparent !important;
                color: var(--orange-light) !important;
                transform: none !important;
                box-shadow: none !important;
            }

            .cta-nav::after {
                display: none !important;
            }

            /* Allow scrolling past menu into page content */
            .nav-links::after {
                content: '';
                display: block;
                height: 100vh;
                width: 100%;
            }
        }

        @media (min-width: 769px) {
            .menu-toggle {
                display: none;
            }

            .nav-links {
                display: flex !important;
                position: static;
                flex-direction: row;
                background: transparent;
                transform: none;
                opacity: 1;
                pointer-events: all;
                padding: 0;
            }

            .nav-links a {
                opacity: 1;
                transform: none;
            }
        }

        /* Container */
        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 60px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 25px;
            }
        }