
        :root {
            --bg: #050505;
            --bg-secondary: #0a0a0a;
            --bg-card: #111111;
            --fg: #ffffff;
            --muted: #888888;
            --accent: #ff4500;
            --accent-light: #ff6b35;
            --accent-glow: rgba(255, 69, 0, 0.3);
            --cyan: #00d4ff;
            --cyan-glow: rgba(0, 212, 255, 0.2);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--bg);
            color: var(--fg);
            overflow-x: hidden;
            cursor: none;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 4px;
        }
        
        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
            transform: translate(-50%, -50%);
        }
        
        .cursor-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
        }
        
        .cursor.hover {
            transform: translate(-50%, -50%) scale(1.8);
            background: var(--accent-glow);
            border-color: var(--cyan);
        }
        
        @media (max-width: 768px) {
            .cursor, .cursor-dot {
                display: none;
            }
            body {
                cursor: auto;
            }
        }
        
        /* Loader */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--bg);
            z-index: 100000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 900;
            letter-spacing: 0.3em;
            background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: logoPulse 2s ease-in-out infinite;
        }
        
        @keyframes logoPulse {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }
        
        .loader-bar-container {
            width: 300px;
            max-width: 80%;
            height: 4px;
            background: var(--bg-card);
            border-radius: 2px;
            margin-top: 3rem;
            overflow: hidden;
            position: relative;
        }
        
        .loader-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--cyan));
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s ease;
            box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
        }
        
        .loader-text {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.5em;
            color: var(--muted);
            margin-top: 1.5rem;
            text-transform: uppercase;
        }
        
        .loader-gear {
            position: absolute;
            opacity: 0.05;
            animation: rotateGear 10s linear infinite;
        }
        
        .loader-gear:nth-child(1) { top: 10%; left: 10%; width: 150px; }
        .loader-gear:nth-child(2) { bottom: 20%; right: 15%; width: 200px; animation-direction: reverse; }
        
        @keyframes rotateGear {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Particles Canvas */
        #particles-canvas {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            z-index: 2;
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 30% 20%, var(--accent-glow) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, var(--cyan-glow) 0%, transparent 50%),
                linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
        }
        
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(var(--accent-glow) 1px, transparent 1px),
                linear-gradient(90deg, var(--accent-glow) 1px, transparent 1px);
            background-size: 100px 100px;
            opacity: 0.1;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(100px); }
        }
        
        .hero-car {
            position: absolute;
            bottom: -5%;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            opacity: 0.15;
            filter: blur(1px);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 2rem;
            max-width: 1000px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(135deg, var(--bg-card), transparent);
            border: 1px solid var(--accent);
            border-radius: 100px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.5s;
        }
        
        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 8vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.7s;
        }
        
        .hero-title .accent {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.6;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.9s;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.1s;
        }
        
        .btn {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .btn:hover::before {
            transform: translateX(100%);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: white;
            border: none;
            box-shadow: 0 0 30px var(--accent-glow), 0 10px 40px rgba(0,0,0,0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px var(--accent-glow), 0 15px 50px rgba(0,0,0,0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--fg);
            border: 2px solid var(--cyan);
            box-shadow: 0 0 20px var(--cyan-glow);
        }
        
        .btn-secondary:hover {
            background: var(--cyan-glow);
            transform: translateY(-3px);
        }
        
        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--muted);
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.5s;
        }
        
        .scroll-indicator {
            width: 24px;
            height: 40px;
            border: 2px solid var(--muted);
            border-radius: 12px;
            position: relative;
        }
        
        .scroll-dot {
            width: 4px;
            height: 8px;
            background: var(--accent);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollBounce 2s ease-in-out infinite;
        }
        
        @keyframes scrollBounce {
            0%, 100% { top: 6px; opacity: 1; }
            50% { top: 22px; opacity: 0.3; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .nav.scrolled {
            background: rgba(5, 5, 5, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 69, 0, 0.1);
        }
        
        .nav-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            color: var(--fg);
            text-decoration: none;
        }
        
        .nav-logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--muted);
            text-decoration: none;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--fg);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: var(--accent);
            color: white;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
        }
        
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }
        
        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--fg);
            transition: all 0.3s ease;
        }
        
        @media (max-width: 900px) {
            .nav-links, .nav-cta {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: var(--bg);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu a {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--fg);
            text-decoration: none;
            letter-spacing: 0.1em;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .mobile-menu.active a {
            opacity: 1;
            transform: translateY(0);
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: var(--fg);
            font-size: 2rem;
            cursor: pointer;
        }
        
        /* Sections */
        .section {
            position: relative;
            z-index: 2;
            padding: 6rem 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 800;
            letter-spacing: 0.02em;
        }
        
        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .service-card {
            background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(40px);
        }
        
        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--cyan));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-glow);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--accent-glow);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-glow), transparent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--accent);
            transition: stroke 0.3s ease;
        }
        
        .service-card:hover .service-icon svg {
            stroke: white;
        }
        
        .service-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
        }
        
        .service-desc {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .service-number {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 50%, var(--bg) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            opacity: 0.3;
        }
        
        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 900px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 500px) {
            .stats-container {
                grid-template-columns: 1fr;
            }
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .stat-card.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            background: linear-gradient(135deg, var(--fg), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-suffix {
            color: var(--accent);
            font-size: clamp(1.5rem, 4vw, 2.5rem);
        }
        
        .stat-label {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
        }
        
        /* Speedometer */
        .speedometer-section {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
            background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg) 100%);
        }
        
        .speedometer-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
        }
        
        .speedometer {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }
        
        .speedometer-bg {
            fill: none;
            stroke: var(--bg-card);
            stroke-width: 20;
        }
        
        .speedometer-progress {
            fill: none;
            stroke: url(#speedGradient);
            stroke-width: 20;
            stroke-linecap: round;
            stroke-dasharray: 565;
            stroke-dashoffset: 565;
            transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 0 20px var(--accent-glow));
        }
        
        .speedometer-progress.animate {
            stroke-dashoffset: 113;
        }
        
        .speedometer-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        
        .speedometer-value {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(3rem, 10vw, 5rem);
            font-weight: 900;
            color: var(--fg);
            line-height: 1;
        }
        
        .speedometer-label {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 0.5rem;
        }
        
        .speedometer-ticks {
            position: absolute;
            inset: 0;
        }
        
        .speedometer-tick {
            position: absolute;
            width: 2px;
            height: 15px;
            background: var(--muted);
            top: 10%;
            left: 50%;
            transform-origin: center 180px;
            opacity: 0.3;
        }
        
        .speedometer-info {
            display: flex;
            justify-content: space-between;
            max-width: 400px;
            margin: 2rem auto 0;
            padding: 0 1rem;
        }
        
        .speedometer-info-item {
            text-align: center;
        }
        
        .speedometer-info-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }
        
        .speedometer-info-label {
            font-size: 0.8rem;
            color: var(--muted);
            letter-spacing: 0.1em;
        }
        
        /* Gallery */
        .gallery-section {
            background: var(--bg);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 300px);
            gap: 1rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gallery-item.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover .gallery-title {
            transform: translateY(0);
        }
        
        @media (max-width: 900px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 200px);
            }
            .gallery-item:nth-child(1) {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 500px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            .gallery-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
            }
        }
        
        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
        }
        
        .testimonials-slider {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding: 2rem;
        }
        
        .testimonials-slider::-webkit-scrollbar {
            display: none;
        }
        
        .testimonial-card {
            flex: 0 0 350px;
            background: linear-gradient(135deg, var(--bg-card), rgba(17, 17, 17, 0.5));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 2rem;
            scroll-snap-align: start;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .testimonial-card:hover {
            border-color: var(--accent-glow);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .testimonial-quote {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.2;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }
        
        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: var(--accent);
        }
        
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--muted);
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .testimonial-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
        }
        
        .testimonial-role {
            font-size: 0.85rem;
            color: var(--muted);
        }
        
        /* Contact Form */
        .contact-section {
            background: var(--bg);
            position: relative;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        .contact-info {
            padding: 2rem 0;
        }
        
        .contact-info-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .contact-info-text {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-glow), transparent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-item-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent);
        }
        
        .contact-item-text {
            font-size: 1rem;
        }
        
        .contact-item-label {
            font-size: 0.85rem;
            color: var(--muted);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        .contact-form {
            background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--cyan));
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            color: var(--fg);
        }
        
        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            color: var(--fg);
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 20px var(--accent-glow);
        }
        
        .form-input::placeholder {
            color: var(--muted);
        }
        
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 18px;
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        @media (max-width: 500px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        .form-submit {
            width: 100%;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border: none;
            border-radius: 10px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px var(--accent-glow);
        }
        
        .form-submit::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
        }
        
        .form-submit:hover::after {
            transform: translateX(100%);
            transition: transform 0.6s ease;
        }
        
        /* Map */
        .map-section {
            height: 400px;
            position: relative;
            background: var(--bg-card);
        }
        
        .map-container {
            width: 100%;
            height: 100%;
            filter: grayscale(1) invert(1) contrast(0.8);
            opacity: 0.8;
        }
        
        .map-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
            pointer-events: none;
        }
        
        /* Footer */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }
        
        @media (max-width: 900px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 500px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        
        .footer-brand {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }
        
        .footer-brand span {
            color: var(--accent);
        }
        
        .footer-desc {
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
            stroke: var(--muted);
            transition: stroke 0.3s ease;
        }
        
        .footer-social a:hover svg {
            stroke: white;
        }
        
        .footer-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            color: var(--fg);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-copyright {
            color: var(--muted);
            font-size: 0.9rem;
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
        }
        
        .whatsapp-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 5px 50px rgba(37, 211, 102, 0.6); }
        }
        
        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
    



        
    /* ============================================
       CHATBOT STYLES
       Añadir estos estilos en la sección <style>
       ============================================ */
    
    .chatbot {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 9999;
        font-family: 'Rajdhani', sans-serif;
    }
    
    /* Botón Trigger */
    .chatbot-trigger {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff4500, #ff6b35);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 32px rgba(255, 69, 0, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
    
    .chatbot-trigger:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(255, 69, 0, 0.5);
    }
    
    .chatbot-trigger svg {
        width: 28px;
        height: 28px;
        fill: white;
        transition: all 0.3s ease;
    }
    
    .chatbot-icon-close {
        position: absolute;
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    
    .chatbot.active .chatbot-icon-chat {
        opacity: 0;
        transform: rotate(90deg) scale(0.5);
    }
    
    .chatbot.active .chatbot-icon-close {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
    
    .chatbot-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        background: #00d4ff;
        color: #000;
        font-size: 0.75rem;
        font-weight: 700;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: badgePulse 2s ease-in-out infinite;
    }
    
    .chatbot-badge.hidden {
        display: none;
    }
    
    @keyframes badgePulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    /* Panel del Chat */
    .chatbot-panel {
        position: absolute;
        bottom: 80px;
        right: 0;
        width: 380px;
        max-width: calc(100vw - 2rem);
        height: 550px;
        max-height: calc(100vh - 120px);
        background: #0a0a0a;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .chatbot.active .chatbot-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    
    /* Header */
    .chatbot-header {
        background: linear-gradient(135deg, #111, #0a0a0a);
        padding: 1.25rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .chatbot-avatar {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #ff4500, #ff6b35);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .chatbot-avatar svg {
        width: 24px;
        height: 24px;
        fill: white;
    }
    
    .chatbot-status {
        position: absolute;
        bottom: 2px;
        right: 2px;
        width: 12px;
        height: 12px;
        background: #25D366;
        border-radius: 50%;
        border: 2px solid #0a0a0a;
        animation: statusPulse 2s ease-in-out infinite;
    }
    
    @keyframes statusPulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
        50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    }
    
    .chatbot-header-info {
        flex: 1;
    }
    
    .chatbot-title {
        font-family: 'Orbitron', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        margin: 0;
        color: #fff;
    }
    
    .chatbot-subtitle {
        font-size: 0.8rem;
        color: #25D366;
    }
    
    .chatbot-minimize {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    .chatbot-minimize:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .chatbot-minimize svg {
        width: 18px;
        height: 18px;
        fill: #888;
    }
    
    /* Mensajes */
    .chatbot-messages {
        flex: 1;
        overflow-y: auto;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        scroll-behavior: smooth;
    }
    
    .chatbot-messages::-webkit-scrollbar {
        width: 4px;
    }
    
    .chatbot-messages::-webkit-scrollbar-thumb {
        background: rgba(255, 69, 0, 0.3);
        border-radius: 2px;
    }
    
    .chat-message {
        max-width: 85%;
        opacity: 0;
        transform: translateY(10px);
        animation: messageIn 0.3s ease forwards;
    }
    
    @keyframes messageIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .chat-message.bot {
        align-self: flex-start;
    }
    
    .chat-message.user {
        align-self: flex-end;
    }
    
    .chat-message-content {
        padding: 0.875rem 1rem;
        border-radius: 16px;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .chat-message.bot .chat-message-content {
        background: #1a1a1a;
        border-bottom-left-radius: 4px;
        color: #e0e0e0;
    }
    
    .chat-message.user .chat-message-content {
        background: linear-gradient(135deg, #ff4500, #ff6b35);
        border-bottom-right-radius: 4px;
        color: white;
    }
    
    .chat-message-time {
        font-size: 0.7rem;
        color: #666;
        margin-top: 0.25rem;
        padding: 0 0.5rem;
    }
    
    .chat-message.user .chat-message-time {
        text-align: right;
    }
    
    /* Quick Replies */
    .chatbot-quick-replies {
        padding: 0.5rem 1rem 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .quick-reply {
        padding: 0.625rem 1rem;
        background: rgba(255, 69, 0, 0.1);
        border: 1px solid rgba(255, 69, 0, 0.3);
        border-radius: 100px;
        color: #ff6b35;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
    }
    
    .quick-reply:hover {
        background: rgba(255, 69, 0, 0.2);
        border-color: #ff4500;
        transform: translateY(-2px);
    }
    
    /* Input Area */
    .chatbot-input-area {
        padding: 1rem;
        display: flex;
        gap: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        background: #0a0a0a;
    }
    
    .chatbot-input {
        flex: 1;
        padding: 0.875rem 1rem;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #fff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }
    
    .chatbot-input:focus {
        outline: none;
        border-color: #ff4500;
        box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
    }
    
    .chatbot-input::placeholder {
        color: #666;
    }
    
    .chatbot-send {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #ff4500, #ff6b35);
        border: none;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    .chatbot-send:hover {
        transform: scale(1.05);
    }
    
    .chatbot-send svg {
        width: 20px;
        height: 20px;
        fill: white;
    }
    
    /* Formulario */
    .chatbot-form {
        position: absolute;
        inset: 0;
        background: #0a0a0a;
        z-index: 10;
        display: flex;
        flex-direction: column;
    }
    
    .chatbot-form-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-family: 'Orbitron', sans-serif;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .chatbot-form-back {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    .chatbot-form-back:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .chatbot-form-back svg {
        width: 20px;
        height: 20px;
        fill: #888;
    }
    
    .chatbot-form-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
        overflow-y: auto;
    }
    
    .chatbot-form-group label {
        display: block;
        font-size: 0.85rem;
        color: #888;
        margin-bottom: 0.5rem;
        letter-spacing: 0.05em;
    }
    
    .chatbot-form-group input {
        width: 100%;
        padding: 0.875rem 1rem;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: #fff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1rem;
        transition: all 0.2s ease;
    }
    
    .chatbot-form-group input:focus {
        outline: none;
        border-color: #ff4500;
    }
    
    .chatbot-form-submit {
        margin-top: auto;
        padding: 1rem 1.5rem;
        background: #25D366;
        border: none;
        border-radius: 12px;
        color: white;
        font-family: 'Orbitron', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        transition: all 0.2s ease;
    }
    
    .chatbot-form-submit:hover {
        background: #20bd5a;
        transform: translateY(-2px);
    }
    
    .chatbot-form-submit svg {
        width: 20px;
        height: 20px;
    }
    
    /* Typing Indicator */
    .typing-indicator {
        display: flex;
        gap: 4px;
        padding: 1rem;
    }
    
    .typing-indicator span {
        width: 8px;
        height: 8px;
        background: #ff4500;
        border-radius: 50%;
        animation: typingBounce 1.4s ease-in-out infinite;
    }
    
    .typing-indicator span:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .typing-indicator span:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    @keyframes typingBounce {
        0%, 60%, 100% { transform: translateY(0); }
        30% { transform: translateY(-8px); }
    }
    
    /* Service Cards */
    .service-card-chat {
        background: #1a1a1a;
        border-radius: 12px;
        padding: 1rem;
        margin: 0.5rem 0;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 1px solid transparent;
    }
    
    .service-card-chat:hover {
        border-color: #ff4500;
        background: #222;
    }
    
    .service-card-chat h4 {
        font-family: 'Orbitron', sans-serif;
        font-size: 0.9rem;
        margin: 0 0 0.25rem;
        color: #fff;
    }
    
    .service-card-chat p {
        font-size: 0.8rem;
        color: #888;
        margin: 0;
    }
    
    .service-card-chat .price {
        color: #ff4500;
        font-weight: 600;
        margin-top: 0.5rem;
    }
    
    /* Responsive */
    @media (max-width: 480px) {
        .chatbot {
            bottom: 1rem;
            right: 1rem;
        }
        
        .chatbot-panel {
            width: calc(100vw - 2rem);
            height: calc(100vh - 100px);
            bottom: 70px;
            right: 0;
            border-radius: 16px;
        }
        
        .chatbot-trigger {
            width: 56px;
            height: 56px;
        }
    }
    
    /* Animación de entrada inicial */
    .chatbot {
        animation: chatbotEntrance 0.5s ease 2s forwards;
        opacity: 0;
        transform: scale(0.8);
    }
    
    @keyframes chatbotEntrance {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }


    .netowebs-link{
color:#ff3c3c;
text-decoration:none;
font-weight:bold;
}

.netowebs-link:hover{
text-decoration:underline;
}