   
        :root {
            /* ELECTRICAR Official Color Palette */
         
            --gray-light-soft: linear-gradient(90deg,  #2c2c2c,  #79797a);
            --gray-medium: #41ac03;
            --gray-dark: #4d4c4c;
            --black-deep: #1d1c1c;
            --orange-intense: #F16823;
            --orange-bright: #FAA625;
            --yellow-illuminated: #FFC732;
            --white: #FFFFFF;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--gray-light-soft);
            color: var(--black-deep);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .font-orbitron {
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }

        .font-exo2 {
            font-family: 'Exo 2', sans-serif;
            font-weight: 700;
        }

        .gradient-bg {
            background: linear-gradient(135deg, var(--black-deep) 0%, var(--gray-dark) 100%);
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--orange-intense), var(--orange-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .gradient-accent {
            background: linear-gradient(135deg, var(--orange-intense), var(--orange-bright), var(--yellow-illuminated));
        }

        /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-image {
            height: 48px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        /* Enhanced Animations */
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .animate-pulse-slow {
            animation: pulse-glow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1);
                filter: drop-shadow(0 0 0 transparent);
            }
            50% { 
                opacity: 0.8; 
                transform: scale(1.05);
                filter: drop-shadow(0 0 20px rgba(255, 199, 50, 0.6));
            }
        }

        .animate-slide-in-left {
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from { 
                opacity: 0; 
                transform: translateX(-50px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }

        .animate-slide-in-right {
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from { 
                opacity: 0; 
                transform: translateX(50px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }

        .animate-zoom-in {
            animation: zoomIn 0.8s ease-out;
        }

        @keyframes zoomIn {
            from { 
                opacity: 0; 
                transform: scale(0.8); 
            }
            to { 
                opacity: 1; 
                transform: scale(1); 
            }
        }

        .hover-lift {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .hover-lift:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(241, 104, 35, 0.25), 0 10px 20px -5px rgba(241, 104, 35, 0.15);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.63);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(241, 104, 35, 0.1);
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.98);
            border-color: rgba(241, 104, 35, 0.3);
        }

        .service-card {
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: #f7f7f7bd;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(241, 104, 35, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px) scale(1.03);
            border-color: var(--orange-intense);
            box-shadow: 0 20px 40px rgba(241, 104, 35, 0.2);
        }

        .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            transition: all 0.4s ease;
        }

        .image-card img {
            transition: all 0.4s ease;
         
        }

        .image-card:hover img {
            transform: scale(1.1);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(241, 104, 35, 0.8), rgba(250, 166, 37, 0.8));
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .image-card:hover .image-overlay {
            opacity: 1;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            animation: bounce-glow 2s infinite;
            background: #25D366;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }

        @keyframes bounce-glow {
            0%, 20%, 50%, 80%, 100% { 
                transform: translateY(0); 
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            40% { 
                transform: translateY(-10px); 
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
            }
            60% { 
                transform: translateY(-5px); 
                box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .section-padding {
            padding: 4rem 0;
        }

        .btn-primary {
            background: var(--orange-intense);
            color: var(--white);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid var(--orange-intense);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: var(--orange-bright);
            border-color: var(--orange-bright);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(241, 104, 35, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--orange-intense);
            border: 2px solid var(--orange-intense);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--orange-intense);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-secondary:hover::before {
            left: 0;
        }

        .btn-secondary:hover {
            color: var(--white);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(241, 104, 35, 0.3);
        }

        /* Hero Section Improvements */
        .hero-content {
            position: relative;
            z-index: 10;
            padding: 2rem;
            background: rgba(41, 41, 41, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            margin-bottom: 2rem;
        }

        .hero-title {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            margin-bottom: 2rem;
        }

        .timeline-item {
            position: relative;
            padding-left: 3rem;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInTimeline 0.6s ease-out forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideInTimeline {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--orange-intense), var(--orange-bright));
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: -6px;
            top: 1rem;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--orange-intense);
            border: 3px solid var(--white);
            box-shadow: 0 0 0 3px var(--orange-bright);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .stats-card {
            background: linear-gradient(135deg, var(--orange-intense), var(--orange-bright));
            color: var(--white);
            transition: all 0.3s ease;
        }

        .stats-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(241, 104, 35, 0.3);
        }

        .tech-pattern {
            background-image: 
                radial-gradient(circle at 25px 25px, var(--orange-intense) 2px, transparent 2px),
                radial-gradient(circle at 75px 75px, var(--orange-bright) 2px, transparent 2px);
            background-size: 100px 100px;
            opacity: 0.1;
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0% { background-position: 0 0, 50px 50px; }
            100% { background-position: 100px 100px, 150px 150px; }
        }

        .electric-border {
            position: relative;
            overflow: hidden;
        }

        .electric-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--yellow-illuminated), transparent);
            animation: electric-slide 2s infinite;
        }

        @keyframes electric-slide {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* PDF Export Optimizations */
        @media print {
            .whatsapp-float,
            .fixed,
            .sticky {
                display: none !important;
            }
            
            body {
                background: var(--white) !important;
            }
            
            .section-padding {
                padding: 2rem 0;
            }

            .animate-float,
            .animate-pulse-slow,
            .animate-slide-in-left,
            .animate-slide-in-right,
            .animate-zoom-in {
                animation: none !important;
            }

            .hero-content {
                background: transparent !important;
                backdrop-filter: none !important;
            }
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .section-padding {
                padding: 2rem 0;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .logo-container {
                gap: 8px;
            }

            .logo-image {
                height: 36px;
                max-width: 120px;
            }

            .logo-text h1 {
                font-size: 1.25rem;
            }

            .logo-text p {
                font-size: 0.75rem;
            }

            .hero-content {
                padding: 1.5rem;
                margin: 1rem;
            }

            .hero-title {
                font-size: 2rem;
                line-height: 1.3;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 640px) {
            
            .hero-title {
                font-size: 1.75rem;
            }
            
            .hero-content {
                padding: 1rem;
                margin: 0.5rem;
            }
        }

        /* Navigation Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--black-deep);
            border-top: 1px solid rgba(241, 104, 35, 0.3);
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 1rem;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            background: rgba(241, 104, 35, 0.1);
            color: var(--yellow-illuminated);
        }

        /* Intersection Observer Classes */
        .fade-in-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left-on-scroll {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease-out;
        }

        .slide-in-left-on-scroll.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right-on-scroll {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease-out;
        }

        .slide-in-right-on-scroll.visible {
            opacity: 1;
            transform: translateX(0);
        }
    