     :root {
            --primary-purple: #8B5CF6;
            --primary-pink: #EC4899;
            --primary-blue: #3B82F6;
            --accent-cyan: #06B6D4;
            --accent-orange: #F97316;
            --accent-green: #10B981;
            --dark-bg: #0F0A1E;
            --dark-purple: #1E1438;
            --light-bg: #F8F4FF;
            --text-light: #F3F4F6;
            --text-dark: #1F2937;
            --gradient-1: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
            --gradient-2: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
            --gradient-3: linear-gradient(135deg, #EC4899 0%, #F97316 100%);
            --gradient-4: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            overflow-x: hidden;
            width: 100%;
        }
        
        body {
            font-family: 'Rubik', 'Assistant', 'Heebo', sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.7;
            width: 100%;
            position: relative;
        }
        
        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.5;
            overflow: hidden;
        }
        
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            animation: float 25s infinite ease-in-out;
        }
        
        .bg-circle-1 {
            width: 600px;
            height: 600px;
            background: var(--primary-purple);
            top: -150px;
            right: -150px;
            animation-delay: 0s;
        }
        
        .bg-circle-2 {
            width: 500px;
            height: 500px;
            background: var(--primary-pink);
            bottom: -150px;
            left: 5%;
            animation-delay: 7s;
        }
        
        .bg-circle-3 {
            width: 450px;
            height: 450px;
            background: var(--primary-blue);
            top: 45%;
            left: 45%;
            animation-delay: 14s;
        }
        
        .bg-circle-4 {
            width: 400px;
            height: 400px;
            background: var(--accent-cyan);
            top: 30%;
            right: 20%;
            animation-delay: 21s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
            25% { transform: translate(60px, -60px) scale(1.15) rotate(90deg); }
            50% { transform: translate(-40px, 40px) scale(0.85) rotate(180deg); }
            75% { transform: translate(50px, 60px) scale(1.1) rotate(270deg); }
        }
        
        /* Particles Effect */
        .particles {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: particleFloat 15s infinite;
        }
        
        @keyframes particleFloat {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }
        
        /* Section Divider Animation - חלק ועדין יותר */
        .section-divider {
            height: 1px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(139, 92, 246, 0.1) 20%,
                rgba(236, 72, 153, 0.1) 50%,
                rgba(139, 92, 246, 0.1) 80%,
                transparent 100%);
            opacity: 0.4;
        }
        
        /* Header & Navigation - כהה יותר ופחות שקוף */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 10, 30, 0.98);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        
        header.scrolled {
            background: rgba(15, 10, 30, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
            border-bottom-color: rgba(139, 92, 246, 0.5);
        }
        
        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            transition: transform 0.4s ease;
        }
        
        .logo-container:hover {
            transform: scale(1.03) translateY(-2px);
        }
        
        .logo-container img {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
            transition: filter 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: drop-shadow(0 0 25px rgba(236, 72, 153, 0.8));
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-1);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 10px;
        }
        
        .nav-links a:hover {
            color: var(--primary-pink);
            transform: translateY(-2px);
        }
        
        .nav-links a:hover::after {
            width: 100%;
            right: auto;
            left: 0;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 1001;
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10rem 2rem 6rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15), transparent 70%);
            animation: pulse 8s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }
        
        .hero-content {
            max-width: 1000px;
            animation: fadeInUp 1.2s ease-out;
            position: relative;
            z-index: 1;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-family: 'Heebo', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 2rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1.2s ease-out 0.2s backwards, textGlow 3s infinite;
            text-shadow: 0 0 80px rgba(139, 92, 246, 0.5);
        }
        
        @keyframes textGlow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
        }
        
        .hero .subtitle {
            font-size: 1.7rem;
            margin-bottom: 1rem;
            color: rgba(243, 244, 246, 0.95);
            font-weight: 400;
            animation: fadeInUp 1.2s ease-out 0.4s backwards;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        
        .hero .description {
            font-size: 1.3rem;
            margin-bottom: 3.5rem;
            color: rgba(243, 244, 246, 0.8);
            font-weight: 300;
            animation: fadeInUp 1.2s ease-out 0.6s backwards;
            line-height: 1.8;
        }
        
        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease-out 0.8s backwards;
        }
        
        .btn {
            padding: 1.2rem 3rem;
            font-size: 1.15rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
            position: relative;
            z-index: 1;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.7);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-pink);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
        }
        
        /* Services Section */
        .services {
            padding: 8rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.4);
            border-radius: 30px;
            color: var(--primary-pink);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-size: 1.4rem;
            color: rgba(243, 244, 246, 0.85);
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }
        
        .service-card {
            background: rgba(30, 20, 56, 0.5);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 30px;
            padding: 3rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .service-card.featured {
            border: 2px solid var(--primary-pink);
            box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
        }
        
        .recommended-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: var(--gradient-3);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
            animation: pulse-badge 2s infinite;
        }
        
        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.15), transparent);
            transition: left 0.7s ease;
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-1);
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover::after {
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: transparent;
            box-shadow: 0 25px 70px rgba(236, 72, 153, 0.4);
        }
        
        .service-card:hover .section-title {
            color: #FFFFFF !important;
        }
        
        .service-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
            display: inline-block;
            filter: drop-shadow(0 0 25px currentColor);
            animation: iconFloat 3s infinite ease-in-out;
        }
        
        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .service-card h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: #FFFFFF;
            transition: color 0.3s ease;
        }
        
        .service-card:hover h3 {
            color: #FFFFFF;
        }
        
        .service-card p {
            color: rgba(243, 244, 246, 0.85);
            line-height: 1.8;
            font-size: 1.08rem;
            margin-bottom: 1.5rem;
        }
        
        .service-benefits {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            margin-bottom: 1.5rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            color: rgba(243, 244, 246, 0.8);
        }
        
        .benefit-item::before {
            content: '✓';
            color: var(--accent-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .service-cta {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--gradient-1);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        
        .service-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
        }
        
        /* Animated Box for Custom Software */
        .click-me-text {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-pink);
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
        }
        
        .animated-box-container {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            perspective: 1000px;
            cursor: pointer;
        }
        
        .animated-box {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: boxFloat 4s ease-in-out infinite, boxRotate 8s linear infinite;
        }
        
        @keyframes boxFloat {
            0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
            50% { transform: translateY(-20px) rotateX(10deg) rotateY(10deg); }
        }
        
        @keyframes boxRotate {
            0% { transform: rotateY(0deg) rotateX(0deg); }
            100% { transform: rotateY(360deg) rotateX(360deg); }
        }
        
        .box-face {
            position: absolute;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.8));
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
        }
        
        .box-face.front  { transform: translateZ(60px); }
        .box-face.back   { transform: rotateY(180deg) translateZ(60px); }
        .box-face.right  { transform: rotateY(90deg) translateZ(60px); }
        .box-face.left   { transform: rotateY(-90deg) translateZ(60px); }
        .box-face.top    { transform: rotateX(90deg) translateZ(60px); }
        .box-face.bottom { transform: rotateX(-90deg) translateZ(60px); }
        
        .animated-box-container:hover .animated-box {
            animation-play-state: paused;
        }
        
        /* Game Modal */
        .game-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            backdrop-filter: blur(20px);
            animation: fadeIn 0.3s ease;
        }
        
        .game-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .game-modal-content {
            position: relative;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            background: rgba(30, 20, 56, 0.95);
            border-radius: 30px;
            border: 2px solid rgba(139, 92, 246, 0.5);
            overflow: hidden;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
            animation: slideUp 0.4s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .game-modal-header {
            padding: 1.5rem 2rem;
            background: rgba(139, 92, 246, 0.2);
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .game-modal-header h3 {
            font-size: 1.5rem;
            color: white;
            margin: 0;
        }
        
        .close-game-modal {
            background: rgba(236, 72, 153, 0.3);
            border: 1px solid rgba(236, 72, 153, 0.5);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-game-modal:hover {
            background: rgba(236, 72, 153, 0.6);
            transform: rotate(90deg);
        }
        
        .game-iframe-container {
            width: 100%;
            height: calc(90vh - 120px);
            min-height: 400px;
        }
        
        .game-iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 8rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            background: rgba(139, 92, 246, 0.05);
        }
        
        .testimonials-slider {
            position: relative;
            overflow-x: auto;
            overflow-y: hidden;
            margin-top: 4rem;
            padding-bottom: 2rem;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-purple) rgba(139, 92, 246, 0.2);
        }
        
        .testimonials-slider::-webkit-scrollbar {
            height: 8px;
        }
        
        .testimonials-slider::-webkit-scrollbar-track {
            background: rgba(139, 92, 246, 0.2);
            border-radius: 10px;
        }
        
        .testimonials-slider::-webkit-scrollbar-thumb {
            background: var(--primary-purple);
            border-radius: 10px;
        }
        
        .testimonials-track {
            display: flex;
            gap: 2rem;
            width: max-content;
        }
        
        .testimonial-card {
            flex: 0 0 400px;
            background: rgba(30, 20, 56, 0.6);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(139, 92, 246, 0.25);
            border-radius: 30px;
            padding: 2.5rem;
            transition: all 0.5s ease;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            font-size: 5rem;
            color: rgba(139, 92, 246, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-pink);
            box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
        }
        
        .testimonial-content {
            margin-bottom: 2rem;
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(243, 244, 246, 0.9);
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        
        .author-info p {
            color: rgba(243, 244, 246, 0.6);
            font-size: 0.9rem;
        }
        
        .rating {
            margin-top: 1.5rem;
            color: #FFC107;
            font-size: 1.1rem;
        }
        
        /* Story Section */
        .story {
            padding: 8rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .story-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 4rem;
        }
        
        .story-text {
            font-size: 1.25rem;
            line-height: 2;
            color: rgba(243, 244, 246, 0.9);
        }
        
        .story-text h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
        }
        
        .story-text p {
            margin-bottom: 1.5rem;
        }
        
        .story-visual {
            position: relative;
            height: 500px;
            border-radius: 30px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(139, 92, 246, 0.4);
        }
        
        .story-visual::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.15), transparent 30%);
            animation: rotate 12s linear infinite;
        }
        
        @keyframes rotate {
            to { transform: rotate(360deg); }
        }
        
        .story-visual::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: rgba(15, 10, 30, 0.4);
            border-radius: 28px;
            backdrop-filter: blur(10px);
        }
        
        .story-visual span {
            position: relative;
            z-index: 1;
        }
        
        /* Contact Section */
        .contact {
            padding: 8rem 2rem;
            background: rgba(139, 92, 246, 0.1);
        }
        
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-form {
            background: rgba(30, 20, 56, 0.6);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 30px;
            padding: 4rem;
            margin-top: 4rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .form-group {
            margin-bottom: 2.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: rgba(243, 244, 246, 0.95);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid rgba(139, 92, 246, 0.25);
            border-radius: 20px;
            background: rgba(15, 10, 30, 0.5);
            color: var(--text-light);
            font-size: 1.05rem;
            font-family: 'Rubik', sans-serif;
            transition: all 0.4s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-pink);
            box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
            background: rgba(15, 10, 30, 0.7);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 180px;
        }
        
        /* Footer - כהה יותר ופחות שקוף */
        footer {
            background: rgba(15, 10, 30, 0.98);
            backdrop-filter: blur(30px);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo-container img {
            height: 60px;
            width: auto;
            filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
            margin-bottom: 1.5rem;
        }
        
        .footer-description {
            color: rgba(243, 244, 246, 0.7);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: rgba(243, 244, 246, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--primary-pink);
            transform: translateX(-5px);
        }
        
        .footer-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        
        .footer-tag {
            padding: 0.5rem 1rem;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 20px;
            font-size: 0.85rem;
            color: rgba(243, 244, 246, 0.8);
            transition: all 0.3s ease;
        }
        
        .footer-tag:hover {
            background: rgba(139, 92, 246, 0.3);
            transform: translateY(-3px);
        }
        
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .social-links a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: var(--text-light);
            font-size: 1.5rem;
            transition: all 0.4s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--gradient-1);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            color: rgba(243, 244, 246, 0.6);
            font-size: 0.95rem;
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            left: 30px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            z-index: 999;
        }
        
        .floating-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            border: 2px solid transparent;
            color: white;
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .accessibility-btn {
            background: var(--gradient-2);
        }
        
        .accessibility-btn:hover {
            transform: scale(1.15) rotate(-5deg);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        /* Accessibility Menu */
        .accessibility-menu {
            position: fixed;
            right: -400px;
            top: 50%;
            transform: translateY(-50%);
            width: 350px;
            background: rgba(30, 20, 56, 0.98);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 20px 0 0 20px;
            padding: 2rem;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
            transition: right 0.4s ease;
            z-index: 1001;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .accessibility-menu.active {
            right: 0;
        }
        
        .accessibility-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
        }
        
        .accessibility-header h3 {
            font-size: 1.5rem;
            color: var(--text-light);
        }
        
        .close-accessibility {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .close-accessibility:hover {
            transform: rotate(90deg);
        }
        
        .accessibility-option {
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .accessibility-option:hover {
            background: rgba(139, 92, 246, 0.2);
        }
        
        .accessibility-option label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            color: var(--text-light);
            font-weight: 500;
        }
        
        .accessibility-option input[type="checkbox"] {
            width: 50px;
            height: 26px;
            appearance: none;
            background: rgba(139, 92, 246, 0.3);
            border-radius: 15px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .accessibility-option input[type="checkbox"]:checked {
            background: var(--gradient-1);
        }
        
        .accessibility-option input[type="checkbox"]::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            top: 3px;
            right: 3px;
            transition: right 0.3s ease;
        }
        
        .accessibility-option input[type="checkbox"]:checked::before {
            right: 27px;
        }
        
        .font-size-controls {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        
        .font-btn {
            flex: 1;
            padding: 0.8rem;
            background: rgba(139, 92, 246, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.4);
            border-radius: 10px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .font-btn:hover {
            background: var(--gradient-1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden;
                width: 100%;
                position: relative;
            }
            
            /* תפריט מובייל - מוריד למטה */
            .nav-links {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                max-width: 300px;
                background: rgba(15, 10, 30, 0.98);
                backdrop-filter: blur(30px);
                padding: 2rem;
                border-radius: 0 20px 20px 0;
                flex-direction: column;
                gap: 1.5rem;
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
                border: 1px solid rgba(139, 92, 246, 0.4);
                border-left: none;
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 8rem 1.5rem 4rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .subtitle {
                font-size: 1.2rem;
            }
            
            .hero .description {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .service-card {
                padding: 2rem;
            }
            
            .testimonials-track {
                padding-right: 1.5rem;
            }
            
            .testimonial-card {
                flex: 0 0 320px;
                padding: 2rem;
            }
            
            .story-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .story-text {
                font-size: 1.1rem;
            }
            
            .story-visual {
                height: 300px;
                font-size: 4rem;
            }
            
            .contact-form {
                padding: 2rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .floating-buttons {
                left: 15px;
                bottom: 15px;
            }
            
            .floating-btn {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .accessibility-menu {
                width: 90%;
                right: -100%;
            }
            
            .accessibility-menu.active {
                right: 5%;
                border-radius: 20px;
            }
            
            .game-modal-content {
                max-width: 95%;
            }
            
            .game-iframe-container {
                height: calc(90vh - 100px);
            }
        }
        
        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease, transform 1s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1s ease, transform 1s ease;
        }
        
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s ease, transform 1s ease;
        }
        
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }