        /* Base Styles & Variables */
        :root {
            --primary: #00f7ff;
            --secondary: #7b00ff;
            --accent: #ff00c8;
            --dark: #0a0a16;
            --darker: #050510;
            --light: #f0f8ff;
            --gray: #a0a0c0;
            --shopify-green: #96bf48;
            --mechanic-orange: #ff6600;
            --triumph-blue: #0066cc;
            --amgo-red: #cc0000;
            --tuxedo-black: #333333;
            --ideal-green: #339966;
            --katool-yellow: #ffcc00;
            --schulz-purple: #9933cc;
            --valor-silver: #999999;
            --quincy-gold: #cc9900;
            --transition: all 0.3s ease;
            --glow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
            --glow-secondary: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--darker);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
            font-family: 'Trocchi', sans-serif;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            z-index: 1;
        }

        h1 {
            font-size: clamp(2rem, 1.7rem + 1vw, 2.5rem);
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h2 {
            font-size: clamp(1.75rem, 1.6rem + 0.5vw, 2rem);
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;

        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        h3 {
            font-size: clamp(1.5rem, 1.35rem + 0.5vw, 1.75rem);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.15rem;
        }

        /* Layout */
        section {
            padding: 80px 0;
            position: relative;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .section-header h2 {
            margin-bottom: 1.5rem;
        }

        .section-header p {
            margin: 0 auto;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 0;
            z-index: 1000;
            transition: var(--transition);
            background: rgba(10, 10, 22, 0.98);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }

        header.scrolled {
            padding: 10px 0;
            background: rgba(5, 5, 16, 0.98);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 45px;
            width: auto;
            transition: var(--transition);
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        /* Add loading state for logo */
        .logo img {
            opacity: 0;
            animation: fadeIn 0.5s ease 0.2s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Fallback if image fails to load */
        .logo:after {
            content: 'Inzadev';
            color: var(--light);
            font-weight: 700;
            display: none;
        }

        .logo img[src=""], 
        .logo img:not([src]) {
            display: none;
        }

        .logo img[src=""] + :after,
        .logo img:not([src]) + :after {
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2.5rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 1.1rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-btn {
            display: inline-block;
            padding: 10px 25px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .nav-btn:hover {
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .nav-btn:hover::before {
            left: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-primary::before {
            background: var(--light);
        }

        /* Mobile Navigation */
        .hamburger {
            display: none;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background: var(--light);
            margin: 6px auto;
            transition: var(--transition);
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
            background: var(--primary);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: var(--primary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--darker);
            z-index: 1000;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(123, 0, 255, 0.3);
            background: rgba(5, 5, 16, 0.9);
        }

        .mobile-logo {
            display: flex;
            align-items: center;
        }

        .mobile-logo img {
            height: 45px;
            width: auto;
        }

        .mobile-close {
            background: transparent;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .mobile-close:hover {
            background: rgba(123, 0, 255, 0.2);
            color: var(--primary);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 20px 0;
            flex-grow: 1;
        }

        .mobile-nav-links li {
            margin: 0;
        }

        .mobile-nav-links a {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            color: var(--light);
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--transition);
            border-bottom: 1px solid rgba(123, 0, 255, 0.1);
        }

        .mobile-nav-links a i {
            margin-right: 15px;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
            color: var(--primary);
        }

        .mobile-nav-links a:hover {
            background: rgba(123, 0, 255, 0.1);
            color: var(--primary);
            padding-left: 30px;
        }

        .mobile-nav-links a.active {
            background: rgba(0, 247, 255, 0.1);
            color: var(--primary);
            border-left: 4px solid var(--primary);
        }

        .mobile-nav-footer {
            padding: 20px;
            background: rgba(5, 5, 16, 0.9);
            border-top: 1px solid rgba(123, 0, 255, 0.3);
        }

        .mobile-social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .mobile-social-link {
            width: 45px;
            height: 45px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .mobile-social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }

        .mobile-contact-info {
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .mobile-contact-info p {
            margin-bottom: 8px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 16, 0.8);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .btn:hover::before {
            left: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-primary::before {
            background: var(--light);
        }

        .btn-secondary {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .btn-secondary::before {
            background: var(--secondary);
        }

        .btn-secondary:hover {
            color: var(--light);
            box-shadow: var(--glow-secondary);
        }

        /* Project Overview */
        .overview {
            background: var(--dark);
            position: relative;
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            align-items: center;
        }

        .overview-text h2 {
            text-align: left;
        }

        .overview-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 247, 255, 0.1);
            position: relative;
        }

        .overview-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(123, 0, 255, 0.2), rgba(0, 247, 255, 0.2));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .overview-image:hover:before {
            opacity: 1;
        }

        .overview-image img {
            width: 100%;
            height: 450px;
            display: block;
            transition: transform 0.5s ease;
        }

        .overview-image:hover img {
            transform: scale(1.05);
        }

        /* Brands Section */
        .brands {
            background: var(--darker);
            position: relative;
        }

        .brands-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            align-items: center;
        }

        .brands-text h2 {
            text-align: left;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .brand-card {
            background: rgba(10, 10, 22, 0.7);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 247, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .brand-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .amgo-card:before {
            background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(123, 0, 255, 0.1));
        }

        .triumph-card:before {
            background: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(123, 0, 255, 0.1));
        }

        .tuxedo-card:before {
            background: linear-gradient(45deg, rgba(51, 51, 51, 0.1), rgba(123, 0, 255, 0.1));
        }

        .ideal-card:before {
            background: linear-gradient(45deg, rgba(51, 153, 102, 0.1), rgba(123, 0, 255, 0.1));
        }

        .katool-card:before {
            background: linear-gradient(45deg, rgba(255, 204, 0, 0.1), rgba(123, 0, 255, 0.1));
        }

        .schulz-card:before {
            background: linear-gradient(45deg, rgba(153, 51, 204, 0.1), rgba(123, 0, 255, 0.1));
        }

        .valor-card:before {
            background: linear-gradient(45deg, rgba(153, 153, 153, 0.1), rgba(123, 0, 255, 0.1));
        }

        .quincy-card:before {
            background: linear-gradient(45deg, rgba(204, 153, 0, 0.1), rgba(123, 0, 255, 0.1));
        }

        .brand-card:hover:before {
            opacity: 1;
        }

        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .brand-logo {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .amgo-logo {
            color: var(--amgo-red);
            text-shadow: 0 0 10px var(--amgo-red);
        }

        .triumph-logo {
            color: var(--triumph-blue);
            text-shadow: 0 0 10px var(--triumph-blue);
        }

        .tuxedo-logo {
            color: var(--tuxedo-black);
            text-shadow: 0 0 10px var(--tuxedo-black);
        }

        .ideal-logo {
            color: var(--ideal-green);
            text-shadow: 0 0 10px var(--ideal-green);
        }

        .katool-logo {
            color: var(--katool-yellow);
            text-shadow: 0 0 10px var(--katool-yellow);
        }

        .schulz-logo {
            color: var(--schulz-purple);
            text-shadow: 0 0 10px var(--schulz-purple);
        }

        .valor-logo {
            color: var(--valor-silver);
            text-shadow: 0 0 10px var(--valor-silver);
        }

        .quincy-logo {
            color: var(--quincy-gold);
            text-shadow: 0 0 10px var(--quincy-gold);
        }

        .brand-card h3 {
            margin-bottom: 15px;
            color: var(--light);
            position: relative;
            z-index: 1;
        }

        .brand-card p {
            position: relative;
            z-index: 1;
        }

        /* Features Section */
        .features {
            background: var(--dark);
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: rgba(10, 10, 22, 0.7);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 247, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(123, 0, 255, 0.1), rgba(0, 247, 255, 0.1));
            z-index: 0;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .feature-card:hover:before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 0 0 10px var(--primary);
        }

        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--light);
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            position: relative;
            z-index: 1;
        }

        /* Results Section */
        .results {
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            text-align: center;
            position: relative;
        }

        .results h2 {
            color: var(--primary);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .stat-item {
            background: rgba(10, 10, 22, 0.7);
            padding: 40px 20px;
            border-radius: 10px;
            border: 1px solid rgba(0, 247, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .stat-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(123, 0, 255, 0.1), rgba(255, 0, 200, 0.1));
            opacity: 0;
            transition: opacity 0.5s;
        }

        .stat-item:hover:before {
            opacity: 1;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            z-index: 1;
        }

        .stat-text {
            font-size: 1.1rem;
            color: var(--gray);
            position: relative;
            z-index: 1;
        }

        /* Gallery Section */
        .gallery {
            background: var(--dark);
            position: relative;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            height: 250px;
            border: 1px solid rgba(0, 247, 255, 0.1);
        }

        .gallery-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(123, 0, 255, 0.3), rgba(0, 247, 255, 0.3));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .gallery-item:hover:before {
            opacity: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            text-align: center;
            padding: 100px 0;
            position: relative;
        }

        .cta h2 {
            margin-bottom: 1.5rem;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .cta-btns {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2.5rem;
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 1.5rem 0;
            border-top: 1px solid rgba(123, 0, 255, 0.4);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            max-width: 180px;
            transition: var(--transition);
        }

        .footer-logo img:hover {
            transform: scale(1.05);
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 2rem;
        }

        .footer-column:first-child {
            flex: 2;
            min-width: 300px;
            max-width: 600px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            color: var(--primary);
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--primary);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(123, 0, 255, 0.3);
            color: var(--gray);
            font-size: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {

            .overview-content, .brands-content {
                grid-template-columns: 1fr;
            }
            
            .brands-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }
            
            .nav-btn {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                position: relative;
            }

            section {
                padding: 60px 0;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .overview-image img {
                height: 250px;
            }
            
            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
                margin-bottom: 10px;
            }
            
            .hero-btns{
                display: none;
            }

            .footer-content {
                flex-direction: column;
                gap: 0;
            }
            
            .footer-column:first-child {
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {

            section {
                padding: 40px 0;
            }
            
            .features-grid {
                grid-template-columns: repeat(1, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(1, 1fr);
            }

            .project-hero {
                height: 50vh;
                display: flex;
                justify-content: center;
                align-items: center;
            }
        
            .btn {
                max-width: 100%;
                /* max-width: 250px; */
                text-align: center;
                padding: 14px 20px;
            }

            .btn-mechanic {
                padding: 14px 20px;
                max-width: 100%;
            }
            
            .feature-card, .brand-card {
                padding: 2rem;
            }

        }