* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #000;
            direction: rtl;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.8);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ff6b35;
            text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            color: #ff6b35;
            background: rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }

        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="circuit" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20h40M20 0v40" stroke="%23333" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="%23111"/><rect width="100%" height="100%" fill="url(%23circuit)"/></svg>');
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            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(255, 107, 53, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 30px rgba(255, 107, 53, 0.8); }
            to { text-shadow: 0 0 40px rgba(255, 107, 53, 1), 0 0 60px rgba(255, 107, 53, 0.6); }
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
            background: linear-gradient(45deg, #f7931e, #ff6b35);
        }

        /* Main Content */
        main {
            margin-top: 0;
        }

        .page {
            display: none;
            min-height: 100vh;
            padding: 6rem 0.2rem 2rem !important;
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
        }

        .page.active {
            display: block;
        }

        .page#home {
            display: block;
            padding: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section {
            margin-bottom: 4rem;
            background: rgba(255,255,255,0.05);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .section h2 {
            font-size: 2.5rem;
            color: #ff6b35;
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
        }

        .section h3 {
            font-size: 1.8rem;
            color: #f7931e;
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(247, 147, 30, 0.5);
        }

        .section p {
            color: #ddd;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pricing-card {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .pricing-card:hover::before {
            left: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #ff6b35;
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
        }

        .pricing-card h3 {
            color: #ff6b35;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: #f7931e;
            margin-bottom: 1rem;
        }

        .pricing-card ul {
            list-style: none;
            color: #ddd;
            text-align: right;
        }

        .pricing-card li {
            margin-bottom: 0.5rem;
            padding-right: 1rem;
            position: relative;
        }

        .pricing-card li::before {
            content: '✓';
            color: #ff6b35;
            font-weight: bold;
            position: absolute;
            right: 0;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #ff6b35;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 10px;
            background: rgba(0,0,0,0.3);
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        }

        .submit-btn {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section {
                padding: 2rem 1rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Countdown Timer */
        .countdown {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }

        .countdown-item {
            text-align: center;
            background: rgba(255, 107, 53, 0.1);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: bold;
            color: #ff6b35;
            display: block;
        }

        .countdown-label {
            color: #ddd;
            font-size: 0.9rem;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .contact-card {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
        }

        .contact-title {
            color: #ff6b35;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            text-align: center;
            text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            background: rgba(255, 107, 53, 0.05);
            padding: 1.2rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 107, 53, 0.1);
            border-color: rgba(255, 107, 53, 0.4);
            transform: translateY(-5px);
        }

        .contact-item strong {
            color: #ff6b35;
            display: inline-block;
            margin-left: 0.5rem;
            margin-right: 0.5rem;
        }

        .contact-item p {
            color: #ddd;
            font-size: 1.1rem;
            line-height: 1.8;
            margin: 0;
        }

        .icon {
            font-size: 1.2rem;
            margin-left: 0.5rem;
        }

        /* Map Section */
        .map-section {
            margin-top: 2rem;
        }

        .map-title {
            color: #ff6b35;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            text-align: center;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid rgba(255, 107, 53, 0.3);
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 40%; /* 40% ratio for responsive iframe */
            transition: all 0.3s ease;
        }

        .map-container:hover {
            border-color: #ff6b35;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .map-link-container {
            margin-top: 1rem;
            text-align: center;
        }

        .map-link {
            color: #ff6b35;
            text-decoration: none;
            font-weight: bold;
            background: rgba(255, 107, 53, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 107, 53, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .map-link:hover {
            background: rgba(255, 107, 53, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-card {
                padding: 1.5rem;
                margin: 0 0.5rem 2rem;
            }

            .contact-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-item {
                padding: 1rem;
            }

            .contact-item p {
                font-size: 1rem;
                line-height: 1.6;
            }

            .map-container {
                padding-bottom: 56.25%; /* 16:9 ratio for mobile */
            }

            .map-title {
                font-size: 1.2rem;
            }

            .map-link {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {

            .contact-card {
                padding: 1rem;
                border-radius: 10px;
            }

            .contact-title {
                font-size: 1.3rem;
            }

            .contact-item {
                padding: 0.8rem;
            }

            .contact-item p {
                font-size: 0.95rem;
            }

            .map-container {
                padding-bottom: 60%; /* Slightly taller for very small screens */
            }

            .map-link {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }
        }

        /* Additional improvements */
        @media (max-width: 320px) {
            .contact-item strong {
                display: block;
                margin-bottom: 0.5rem;
            }
            
            .icon {
                margin-left: 0;
            }
        }

        /* Loading animation for iframe */
        .map-container::before {
            content: 'טוען מפה...';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ff6b35;
            z-index: 1;
            font-weight: bold;
        }

        .map-container iframe {
            z-index: 2;
        }