 :root {
            /* Ultra Premium Color Palette */
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            --secondary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
            --accent-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #fa709a 100%);
            --gold-gradient: linear-gradient(135deg, #ffd89b 0%, #19547b 50%, #ffd89b 100%);
            --hologram-gradient: linear-gradient(135deg, #ff006e 0%, #8338ec 25%, #3a86ff 50%, #06ffa5 75%, #ffbe0b 100%);
            
            /* Neon Colors */
            --neon-cyan: #00ffff;
            --neon-magenta: #ff00ff;
            --neon-yellow: #ffff00;
            --neon-green: #00ff00;
            --neon-blue: #0080ff;
            --neon-purple: #8000ff;
            
            /* Glass & Materials */
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.15);
            --glass-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
            --ultra-glass: rgba(255, 255, 255, 0.03);
            --dark-glass: rgba(0, 0, 0, 0.2);
            
            /* Backgrounds */
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --space-bg: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
            
            /* Shadows & Effects */
            --glow-shadow: 0 0 50px rgba(102, 126, 234, 0.4);
            --mega-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
            --neon-glow: 0 0 20px currentColor, 0 0 40px currentColor, 0 0 80px currentColor;
            
            /* Animations */
            --transition-ultra: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', 'Inter', sans-serif;
            background: var(--dark-bg);
            color: white;
            overflow-x: hidden;
            direction: rtl;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Ultra Custom Cursor */
        .cursor {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--neon-cyan);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
            box-shadow: var(--neon-glow);
        }

        .cursor-trail {
            position: fixed;
            width: 4px;
            height: 4px;
            background: var(--neon-magenta);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid var(--neon-purple);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            background: radial-gradient(circle, transparent 60%, rgba(128, 0, 255, 0.1) 100%);
        }

        /* Advanced Particles Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -2;
        }

        /* 3D Scene Container */
        #three-scene {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.6;
        }

        /* Ultra Premium Loading Screen */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--space-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            flex-direction: column;
        }

        .loader-container {
            position: relative;
            width: 200px;
            height: 200px;
        }

        .loader-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid transparent;
        }

        .loader-ring:nth-child(1) {
            border-top: 3px solid var(--neon-cyan);
            animation: spin 2s linear infinite;
        }

        .loader-ring:nth-child(2) {
            border-right: 3px solid var(--neon-magenta);
            animation: spin 2s linear infinite reverse;
            animation-delay: 0.5s;
        }

        .loader-ring:nth-child(3) {
            border-bottom: 3px solid var(--neon-yellow);
            animation: spin 2s linear infinite;
            animation-delay: 1s;
        }

        .loader-ring:nth-child(4) {
            border-left: 3px solid var(--neon-green);
            animation: spin 2s linear infinite reverse;
            animation-delay: 1.5s;
        }

        .loader-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: var(--hologram-gradient);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: var(--glow-shadow);
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .loader-text {
            margin-top: 50px;
            font-size: 2rem;
            font-weight: 700;
            background: var(--hologram-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGlow 3s ease-in-out infinite;
            text-align: center;
        }

        .loader-subtitle {
            margin-top: 20px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            animation: fadeInOut 2s ease-in-out infinite;
        }

        @keyframes textGlow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.5) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); }
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Ultra Premium Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--ultra-glass);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            padding: 25px 0;
            transition: var(--transition-ultra);
        }

        .navbar.scrolled {
            background: var(--glass-bg);
            padding: 15px 0;
            box-shadow: var(--glass-shadow);
            border-bottom: 1px solid var(--neon-cyan);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 3rem;
            font-weight: 900;
            background: var(--hologram-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            position: relative;
            transition: var(--transition-smooth);
        }

        .logo::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: var(--hologram-gradient);
            border-radius: 15px;
            opacity: 0;
            z-index: -1;
            transition: var(--transition-smooth);
            filter: blur(20px);
        }

        .logo:hover::before {
            opacity: 0.3;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 50px;
        }

        .nav-link {
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            position: relative;
            transition: var(--transition-smooth);
            padding: 15px 25px;
            border-radius: 30px;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            opacity: 0;
            transition: var(--transition-smooth);
            backdrop-filter: blur(20px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--hologram-gradient);
            transition: var(--transition-bounce);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            opacity: 1;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        .nav-link:hover {
            color: var(--neon-cyan);
            text-shadow: var(--neon-glow);
            transform: translateY(-3px);
        }

        /* Ultra Premium Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--space-bg);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
            animation: gradientShift 10s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .hero-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 30px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 40px;
            backdrop-filter: blur(20px);
            box-shadow: var(--glass-shadow);
            transition: var(--transition-bounce);
            cursor: pointer;
        }

        .hero-badge:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--glow-shadow);
            border-color: var(--neon-cyan);
        }

        .hero-badge-icon {
            width: 30px;
            height: 30px;
            background: var(--hologram-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 40px;
            position: relative;
        }

        .hero-title .gradient-text {
            background: var(--hologram-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientMove 5s ease-in-out infinite;
            background-size: 200% 200%;
        }

        @keyframes gradientMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-title .neon-text {
            color: var(--neon-cyan);
            text-shadow: var(--neon-glow);
            animation: neonPulse 3s ease-in-out infinite;
        }

        @keyframes neonPulse {
            0%, 100% { 
                text-shadow: 
                    0 0 5px currentColor,
                    0 0 10px currentColor,
                    0 0 20px currentColor,
                    0 0 40px currentColor;
            }
            50% { 
                text-shadow: 
                    0 0 10px currentColor,
                    0 0 20px currentColor,
                    0 0 40px currentColor,
                    0 0 80px currentColor;
            }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 50px;
            line-height: 1.8;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition-bounce);
            display: inline-flex;
            align-items: center;
            gap: 15px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.8s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--hologram-gradient);
            color: white;
            box-shadow: var(--glow-shadow);
            border: 2px solid transparent;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--mega-shadow);
        }

        .btn-outline {
            background: var(--glass-bg);
            color: white;
            border: 2px solid var(--glass-border);
        }

        .btn-outline:hover {
            background: var(--glass-bg);
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
            box-shadow: var(--glow-shadow);
            transform: translateY(-5px);
        }

        /* Ultra Advanced 3D Passport Animation */
        .hero-visual {
            position: relative;
            height: 700px;
            perspective: 2000px;
            transform-style: preserve-3d;
        }

        .passport-scene {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }

        .passport-container {
            position: absolute;
            width: 140px;
            height: 180px;
            transform-style: preserve-3d;
            animation: float3D 8s ease-in-out infinite;
        }

        .passport-container:nth-child(1) {
            top: 5%;
            right: 15%;
            animation-delay: 0s;
        }

        .passport-container:nth-child(2) {
            top: 35%;
            right: 65%;
            animation-delay: 2s;
        }

        .passport-container:nth-child(3) {
            top: 65%;
            right: 20%;
            animation-delay: 4s;
        }

        .passport-container:nth-child(4) {
            top: 20%;
            right: 85%;
            animation-delay: 6s;
        }

        .passport-container:nth-child(5) {
            top: 80%;
            right: 70%;
            animation-delay: 1s;
        }

        @keyframes float3D {
            0%, 100% { 
                transform: 
                    translateX(0px) 
                    translateY(0px) 
                    translateZ(0px) 
                    rotateX(0deg) 
                    rotateY(0deg) 
                    rotateZ(0deg); 
            }
            25% { 
                transform: 
                    translateX(30px) 
                    translateY(-40px) 
                    translateZ(50px) 
                    rotateX(15deg) 
                    rotateY(45deg) 
                    rotateZ(10deg); 
            }
            50% { 
                transform: 
                    translateX(-20px) 
                    translateY(20px) 
                    translateZ(-30px) 
                    rotateX(-10deg) 
                    rotateY(-30deg) 
                    rotateZ(-15deg); 
            }
            75% { 
                transform: 
                    translateX(40px) 
                    translateY(-20px) 
                    translateZ(40px) 
                    rotateX(20deg) 
                    rotateY(60deg) 
                    rotateZ(5deg); 
            }
        }

        .passport {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #dc2626, #991b1b, #7f1d1d, #450a0a);
            border-radius: 15px;
            box-shadow: 
                0 25px 50px rgba(220, 38, 38, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            text-align: center;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .passport::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 4s ease-in-out infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        .passport::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            pointer-events: none;
        }

        .passport-flag {
            font-size: 2.5rem;
            margin-bottom: 15px;
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
            animation: flagWave 3s ease-in-out infinite;
        }

        @keyframes flagWave {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(5deg); }
        }

        .passport-text {
            font-size: 0.9rem;
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .passport-hologram {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 30px;
            height: 30px;
            background: var(--hologram-gradient);
            border-radius: 50%;
            animation: hologramPulse 2s ease-in-out infinite;
        }

        @keyframes hologramPulse {
            0%, 100% { opacity: 0.7; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Floating Geometric Elements */
        .floating-geometry {
            position: absolute;
            opacity: 0.1;
            animation: geometryFloat 20s linear infinite;
            pointer-events: none;
        }

        .floating-geometry:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-geometry:nth-child(2) {
            top: 30%;
            right: 10%;
            animation-delay: 7s;
        }

        .floating-geometry:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 14s;
        }

        @keyframes geometryFloat {
            0% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(50px, -50px) rotate(90deg) scale(1.2); }
            50% { transform: translate(-30px, 30px) rotate(180deg) scale(0.8); }
            75% { transform: translate(70px, 20px) rotate(270deg) scale(1.1); }
            100% { transform: translate(0, 0) rotate(360deg) scale(1); }
        }

        .geometry-shape {
            width: 80px;
            height: 80px;
            background: var(--hologram-gradient);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            filter: blur(1px);
        }

        .geometry-shape.circle {
            border-radius: 50%;
            clip-path: none;
        }

        .geometry-shape.diamond {
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        /* Ultra Premium Services Section */
        .services {
            padding: 200px 0;
            position: relative;
            background: 
                linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%),
                var(--darker-bg);
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .services-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 120px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 40px;
            backdrop-filter: blur(20px);
            box-shadow: var(--glass-shadow);
            transition: var(--transition-bounce);
        }

        .section-badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-shadow);
        }

        .section-title {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 30px;
            background: var(--hologram-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientMove 5s ease-in-out infinite;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 300;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
        }

        .service-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            padding: 60px 50px;
            text-align: center;
            backdrop-filter: blur(30px);
            transition: var(--transition-ultra);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--hologram-gradient);
            opacity: 0;
            transition: var(--transition-smooth);
            border-radius: 30px;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition-smooth);
            transform: scale(0);
        }

        .service-card:hover::before {
            opacity: 0.05;
        }

        .service-card:hover::after {
            opacity: 1;
            transform: scale(1);
        }

        .service-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: var(--mega-shadow);
            border-color: var(--neon-cyan);
        }

        .service-icon {
            width: 120px;
            height: 120px;
            background: var(--hologram-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 40px;
            font-size: 3rem;
            color: white;
            position: relative;
            z-index: 2;
            box-shadow: var(--glow-shadow);
            transition: var(--transition-bounce);
        }

        .service-card:hover .service-icon {
            animation: iconFloat 2s ease-in-out infinite;
            transform: scale(1.1);
        }

        @keyframes iconFloat {
            0%, 100% { transform: scale(1.1) translateY(0px); }
            50% { transform: scale(1.1) translateY(-10px); }
        }

        .service-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .service-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            position: relative;
            z-index: 2;
            font-size: 1.1rem;
        }

        /* Ultra Premium About Section */
        .about {
            padding: 200px 0;
            position: relative;
            background: var(--space-bg);
        }

        .about-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 120px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 40px;
            background: var(--hologram-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientMove 5s ease-in-out infinite;
        }

        .about-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.9;
            margin-bottom: 35px;
            font-weight: 300;
        }

        .about-features {
            list-style: none;
            margin-top: 40px;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 25px;
            font-size: 1.2rem;
            color: white;
            padding: 20px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            transition: var(--transition-smooth);
        }

        .about-features li:hover {
            transform: translateX(-10px);
            box-shadow: var(--glass-shadow);
            border-color: var(--neon-cyan);
        }

        .about-features i {
            width: 60px;
            height: 60px;
            background: var(--hologram-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: var(--glow-shadow);
        }

        .about-visual {
            position: relative;
            height: 600px;
            perspective: 1500px;
        }

        .about-shape {
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--hologram-gradient);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            animation: shapeRotate 20s linear infinite;
            box-shadow: var(--mega-shadow);
            overflow: hidden;
        }

        .about-shape::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
            animation: lightMove 8s ease-in-out infinite;
        }

        @keyframes shapeRotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes lightMove {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(50px, -50px); }
        }

        /* Ultra Premium Contact Section */
        .contact {
            padding: 200px 0;
            background: 
                linear-gradient(135deg, rgba(245, 101, 101, 0.03) 0%, rgba(139, 69, 19, 0.03) 100%),
                var(--darker-bg);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(245, 101, 101, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            margin-top: 100px;
        }

        .contact-info h3 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: white;
            font-weight: 700;
        }

        .contact-info p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 50px;
            line-height: 1.8;
            font-size: 1.2rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 35px;
            padding: 30px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            backdrop-filter: blur(30px);
            transition: var(--transition-ultra);
            cursor: pointer;
        }

        .info-item:hover {
            transform: translateX(-15px) scale(1.02);
            box-shadow: var(--mega-shadow);
            border-color: var(--neon-cyan);
        }

        .info-item i {
            width: 70px;
            height: 70px;
            background: var(--hologram-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: var(--glow-shadow);
        }

        .info-content h4 {
            color: white;
            margin-bottom: 10px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .info-content span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .contact-form {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            padding: 60px;
            backdrop-filter: blur(30px);
            box-shadow: var(--glass-shadow);
        }

        .form-group {
            margin-bottom: 35px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 25px;
            background: var(--ultra-glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            color: white;
            font-size: 1.1rem;
            transition: var(--transition-smooth);
            backdrop-filter: blur(20px);
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-cyan);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
            background: var(--glass-bg);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        /* Ultra Premium Footer */
        .footer {
            background: var(--space-bg);
            padding: 100px 0 40px;
            border-top: 1px solid var(--glass-border);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--hologram-gradient);
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            background: var(--hologram-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .footer-section p,
        .footer-section li {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition-smooth);
            padding: 10px 0;
            display: block;
        }

        .footer-section a:hover {
            color: var(--neon-cyan);
            text-shadow: var(--neon-glow);
            transform: translateX(-5px);
        }

        .footer-bottom {
            border-top: 1px solid var(--glass-border);
            padding-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.1rem;
        }

        /* Ultra Premium Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 40px;
            left: 40px;
            width: 70px;
            height: 70px;
            background: var(--hologram-gradient);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-ultra);
            z-index: 1000;
            box-shadow: var(--glow-shadow);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: var(--mega-shadow);
        }

        /* Ultra Responsive Design */
        @media (max-width: 1400px) {
            .hero-container,
            .about-container,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 80px;
                text-align: center;
            }

            .hero-title {
                font-size: 4rem;
            }

            .section-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 40px;
            }

            .nav-container,
            .hero-container,
            .services-container,
            .about-container,
            .contact-container,
            .footer-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .btn {
                padding: 15px 25px;
                font-size: 1rem;
            }
        }

        /* Advanced Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(100px);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-100px);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(100px);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.5);
        }

        .rotate-in {
            opacity: 0;
            transform: rotate(180deg) scale(0.5);
        }

        /* Typewriter Effect Enhanced */
        .typewriter {
            overflow: hidden;
            border-left: 4px solid var(--neon-cyan);
            white-space: nowrap;
            animation: typing 4s steps(40, end), blink-caret 1s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--neon-cyan); }
        }

        /* Holographic Text Effect */
        .holographic-text {
            background: var(--hologram-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: holographicShift 3s ease-in-out infinite;
        }

        @keyframes holographicShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }