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

        :root {
            /* צבעי בדק בית - המותג המקורי */
            --primary: #0ea5e9;
            --primary-dark: #0284c7;
            --primary-light: #38bdf8;
            --secondary: #06b6d4;
            --accent: #14b8a6;
            --dark: #0c1222;
            --dark-light: #1e293b;
            --dark-card: #162032;
            --text: #f8fafc;
            --text-muted: #94a3b8;
            --gold: #f59e0b;
            
            /* צבעי מחלקת ממונה בטיחות - חדש */
            --safety: #f97316;
            --safety-dark: #c2410c;
            --safety-light: #fdba74;
            --gradient-safety: linear-gradient(135deg, #f97316 0%, #ea580c 100%);

            --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);
            --gradient-2: linear-gradient(135deg, #0c1222 0%, #1e293b 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Heebo', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: var(--dark);
            overflow: hidden;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%), /* Safety Glow */
                        radial-gradient(circle at 40% 40%, rgba(20, 184, 166, 0.05) 0%, transparent 40%);
            animation: bgMove 30s ease-in-out infinite;
        }

        @keyframes bgMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(5deg); }
            66% { transform: translate(-20px, 20px) rotate(-5deg); }
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite;
        }
        
        .particle:nth-child(even) { background: var(--safety); } /* שילוב חלקיקי בטיחות */

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 19s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 21s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 23s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 16s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 20s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 24s; }

        @keyframes float {
            0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.5; }
            50% { opacity: 0.3; }
            90% { opacity: 0.1; }
            100% { transform: translateY(-100vh) scale(1); opacity: 0; }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.4s ease;
            background: transparent;
        }

        .header.scrolled {
            background: rgba(12, 18, 34, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            padding: 0.75rem 2rem;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--text);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }
        
        .nav a[href="#safety"]::after {
            background: var(--gradient-safety);
        }

        .nav a:hover {
            color: var(--primary);
        }
        
        .nav a[href="#safety"]:hover {
            color: var(--safety);
        }

        .nav a:hover::after {
            width: 100%;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient-1);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
        }

        .header-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(14, 165, 233, 0.6);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(12, 18, 34, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: right 0.4s ease;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-menu a[href="#safety"] {
            color: var(--safety-light);
        }

        .mobile-menu a:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 2rem 4rem;
        }

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* שימוש בתמונה ששלחת עם שכבת כהות כדי שהטקסט הלבן יבלוט */
    background: linear-gradient(to left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5)), 
                url('img157.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* הוספת אפקט קטן כדי שהתמונה לא תזוז מהר מדי בגלילה (Parallax light) */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-content {
            animation: fadeInRight 1s ease;
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(14, 165, 233, 0.15);
            border: 1px solid rgba(14, 165, 233, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--primary-light);
            margin-bottom: 1.5rem;
        }
        
        .hero-badge.safety-badge {
            background: rgba(249, 115, 22, 0.15);
            border-color: rgba(249, 115, 22, 0.3);
            color: var(--safety-light);
            margin-right: 0.5rem;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .hero-badge.safety-badge::before {
            background: var(--safety);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-wrap: balance;
        }

        .hero h1 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
        }
        
        .btn-safety-outline {
            background: transparent;
            color: var(--safety-light);
            border: 2px solid rgba(249, 115, 22, 0.4);
        }
        
        .btn-safety-outline:hover {
            background: rgba(249, 115, 22, 0.1);
            border-color: var(--safety);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.25rem;
        }

        .hero-visual {
            position: relative;
            animation: fadeInLeft 1s ease;
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-1);
            border-radius: 26px;
            z-index: -1;
        }

        .hero-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 24px;
        }

        .floating-card {
            position: absolute;
            background: rgba(22, 32, 50, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 1rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: floatCard 4s ease-in-out infinite;
        }

        .floating-card-1 {
            bottom: 20%;
            right: -30px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            top: 15%;
            left: -30px;
            animation-delay: 2s;
            border-color: rgba(249, 115, 22, 0.3);
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }
        
        .floating-card-2 .floating-card-icon {
            background: var(--gradient-safety);
        }

        .floating-card-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .floating-card-text {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            position: relative;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(14, 165, 233, 0.15);
            border: 1px solid rgba(14, 165, 233, 0.3);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary-light);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-wrap: balance;
        }

        .section-title span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .about-content h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .about-feature-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-image-container {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .about-image-container::before {
            content: '';
            position: absolute;
            top: 20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            border-radius: 24px;
            z-index: -1;
            opacity: 0.3;
        }

        /* Services Section (בדק בית) */
        .services {
            background: var(--dark);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--dark-card);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
            border-color: rgba(14, 165, 233, 0.3);
        }

        .service-card:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 0.75rem;
        }

        .hidden-service {
    display: none; /* מסתיר את 3 הכרטיסיות האחרונות */
}

.service-card.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.content-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.service-card.expanded .content-full {
    max-height: 500px; /* מאפשר תוכן ארוך */
}

.show-more-wrapper {
    text-align: center;
    margin-top: 40px;
}



/* מנגנון הסתרה והצגה של טקסט מלא בכרטיסייה */
.content-full {
    display: none;
    margin-top: 10px;
}

.content-full.show {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color, #0ea5e9); 
    cursor: pointer;
    padding: 0;
    font-weight: bold;
    margin-top: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #0284c7; /* גוון כהה יותר בהובר */
    text-decoration: underline;
}

/* מנגנון הסתרה של שירותים נוספים */
.hidden-service {
    display: none;
}

.hidden-service.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* עיצוב לכפתור צפה בכל התחומים (אם אין לך קלאס btn-outline מוגדר) */
#toggleAllServices:hover {
    background: var(--primary-color, #0ea5e9);
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


        .content-full {
    display: none; /* מסתיר את הטקסט המלא כברירת מחדל */
    margin-top: 10px;
}

.read-more-btn {
    background: none;
    border: none;
    color: #3b82f6; /* צבע כחול או צבע המותג שלך */
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    font-family: 'Heebo', sans-serif;
    text-decoration: underline;
}

/* Class שיתווסף כשהטקסט פתוח */
.expandable-content.active .content-full {
    display: block;
}

.service-card {
    transition: all 0.3s ease;
}


.content-full { display: none; margin-top: 15px; }
.expandable-content.active .content-full { display: block; }


        /* --- NEW: Safety Officer Section --- */
        .safety-officer {
            background: linear-gradient(180deg, var(--dark-light) 0%, #110905 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(249, 115, 22, 0.1);
            border-bottom: 1px solid rgba(249, 115, 22, 0.1);
        }

        .safety-officer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                rgba(249, 115, 22, 0.02),
                rgba(249, 115, 22, 0.02) 10px,
                transparent 10px,
                transparent 20px
            );
            z-index: 0;
        }

        .safety-title span {
            background: var(--gradient-safety);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .safety-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .safety-card {
            background: rgba(22, 32, 50, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(249, 115, 22, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
        }

        .safety-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 2px;
            background: var(--gradient-safety);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .safety-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
        }

        .safety-card:hover::before {
            opacity: 1;
        }

        .safety-icon {
            width: 60px;
            height: 60px;
            background: rgba(249, 115, 22, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--safety);
        }

        .safety-icon svg {
            width: 32px;
            height: 32px;
            stroke: currentColor;
        }

        .safety-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .safety-card p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Process Section */
        .process {
            background: linear-gradient(180deg, #110905 0%, var(--dark-light) 100%);
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            right: 24px;
            width: 4px;
            height: 100%;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .process-item {
            position: relative;
            padding-right: 80px;
            padding-bottom: 3rem;
            opacity: 0;
            transform: translateX(30px);
            animation: slideIn 0.6s ease forwards;
        }

        @keyframes slideIn {
            to { opacity: 1; transform: translateX(0); }
        }

        .process-number {
            position: absolute;
            right: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 800;
            color: white;
            box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
        }

        .process-content {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .process-content:hover {
            border-color: rgba(14, 165, 233, 0.3);
            box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
        }

        .process-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--primary-light);
        }

        .process-content p {
            color: var(--text-muted);
            line-height: 1.8;
        }

        .process-content ul {
            margin-top: 1rem;
            padding-right: 1.25rem;
            color: var(--text-muted);
        }

        .process-content li {
            margin-bottom: 0.5rem;
        }

        /* Articles Section */
        .articles {
            background: var(--dark);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .article-card {
            background: var(--dark-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
        }

        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .article-content {
            padding: 1.5rem;
        }

        .article-content h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .article-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .article-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .article-link:hover {
            gap: 0.75rem;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 5rem;
            font-family: serif;
            color: var(--primary);
            opacity: 0.2;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(14, 165, 233, 0.3);
        }

        .testimonial-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .testimonial-stars svg {
            width: 20px;
            height: 20px;
            fill: var(--gold);
        }

        .testimonial-text {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
        }

        .testimonial-name {
            font-weight: 600;
        }

        .testimonial-location {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Areas Section */
        .areas {
            background: var(--dark);
            text-align: center;
        }

        .areas-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .area-tag {
            background: rgba(14, 165, 233, 0.1);
            border: 1px solid rgba(14, 165, 233, 0.2);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .area-tag:hover {
            background: rgba(14, 165, 233, 0.2);
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
        }

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

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .contact-info h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--dark-card);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            border-color: var(--primary);
            transform: translateX(-5px);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-method-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-method-value {
            color: var(--primary-light);
            font-size: 1.1rem;
        }

        .contact-form-container {
            background: var(--dark-card);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: var(--dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            color: var(--text);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit {
            margin-top: 1rem;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 2rem 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            margin: 1rem 0 1.5rem;
            line-height: 1.7;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: var(--dark-card);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--gradient-1);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            animation: whatsappPulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.7); }
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .services-grid,
            .safety-grid,
            .articles-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-container,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

            .hero-visual {
                order: -1;
            }

            .nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .header-phone {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .services-grid,
            .safety-grid,
            .articles-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .stat-number {
                font-size: 1.75rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .process-timeline::before {
                right: 20px;
            }

            .process-item {
                padding-right: 60px;
            }

            .process-number {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* הקישור הישיר לתמונה שעובד ב-100% */
    background-image: linear-gradient(to left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5)), 
                      url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2000'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

        
            /* עיצוב לתעודות עם תמונות */
            .certs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 70px; }
            .cert-card { background: #1e293b; border: 1px solid #334155; border-radius: 20px; overflow: hidden; text-align: center; transition: all 0.3s ease; display: flex; flex-direction: column; }
            .cert-card:hover { transform: translateY(-5px); border-color: #38bdf8; box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15); }
            
            .cert-image-container { width: 100%; height: 220px; overflow: hidden; border-bottom: 1px solid #334155; }
            .cert-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; cursor: pointer; }
            .cert-card:hover .cert-image-container img { transform: scale(1.05); }
            
            .cert-content { padding: 25px 20px; }
            .cert-content h3 { color: #f8fafc; font-size: 1.25rem; margin-top: 0; margin-bottom: 10px; }
            .cert-content p { color: #94a3b8; font-size: 0.95rem; margin: 0; line-height: 1.5; }

            /* עיצוב לדוחות לדוגמה */
            .samples-header { border-top: 1px solid #1e293b; padding-top: 60px; text-align: center; margin-bottom: 40px; }
            .samples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
            .sample-card { background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%); border: 1px solid #334155; border-radius: 15px; padding: 25px; display: flex; align-items: flex-start; gap: 20px; transition: all 0.3s ease; text-decoration: none; }
            .sample-card:hover { border-color: #38bdf8; background: linear-gradient(145deg, #1e293b 0%, #172133 100%); transform: translateX(-5px); }
            .pdf-icon { color: #ef4444; flex-shrink: 0; }
            .sample-info { flex-grow: 1; text-align: right; }
            .sample-info h4 { color: #f8fafc; font-size: 1.1rem; margin: 0 0 5px 0; }
            .sample-info p { color: #94a3b8; font-size: 0.9rem; margin: 0 0 15px 0; }
            .view-report-text { color: #38bdf8; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }
     

            .articles-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 30px;
                margin-bottom: 40px;
            }
            .article-card {
                background: #1e293b;
                border: 1px solid #334155;
                border-radius: 20px;
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                display: flex;
                flex-direction: column;
            }
            .article-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                border-color: #38bdf8;
            }
            .article-image {
                width: 100%;
                height: 200px;
                object-fit: cover;
            }
            .article-content {
                padding: 25px;
                display: flex;
                flex-direction: column;
                flex-grow: 1;
            }
            .article-content h3 {
                color: #f8fafc;
                font-size: 1.3rem;
                margin-bottom: 15px;
                line-height: 1.4;
            }
            .content-preview {
                color: #94a3b8;
                line-height: 1.6;
                font-size: 0.95rem;
            }
            .content-full {
                display: none; /* מוסתר כברירת מחדל */
                margin-top: 15px;
                color: #cbd5e1;
                line-height: 1.6;
                border-top: 1px solid #334155;
                padding-top: 15px;
                font-size: 0.95rem;
            }
            .content-full.show {
                display: block;
            }
            .content-full h4 { color: #38bdf8; margin: 15px 0 10px 0; font-size: 1.1rem; }
            .content-full ul { padding-right: 20px; margin-bottom: 15px; }
            .content-full li { margin-bottom: 5px; }
            .read-more-btn {
                background: none;
                border: none;
                color: #38bdf8;
                font-weight: bold;
                cursor: pointer;
                padding: 0;
                margin-top: auto;
                padding-top: 15px;
                text-align: right;
                font-family: inherit;
                font-size: 1rem;
                transition: color 0.3s;
            }
            .read-more-btn:hover {
                color: #0ea5e9;
            }
            /* קלאס להסתרת מאמרים מעבר ל-6 הראשונים */
            .hidden-article {
                display: none;
            } 
            .law-table { width: 100%; border-collapse: collapse; margin: 15px 0; font-size: 0.85rem; }
            .law-table th, .law-table td { border: 1px solid #334155; padding: 8px; text-align: right; }
            .law-table th { background-color: #0f172a; color: #38bdf8; }


               
            /* עיצוב הכותרת של אזור השאלות */
            .faq-header { text-align: center; margin-bottom: 50px; }
            .faq-badge { display: inline-block; background: rgba(56, 189, 248, 0.1); color: #38bdf8; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 15px; border: 1px solid rgba(56, 189, 248, 0.2); }
            .faq-header h2 { color: #f8fafc; font-size: 2.5rem; margin: 0 0 15px 0; }
            .faq-header p { color: #94a3b8; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

            /* עיצוב השאלות (האקורדיון) */
            .faq-container { display: flex; flex-direction: column; gap: 15px; }
            .faq-item { background-color: #1e293b; border: 1px solid #334155; border-radius: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); overflow: hidden; transition: all 0.3s ease; direction: rtl; }
            .faq-item:hover { border-color: #38bdf8; box-shadow: 0 6px 15px rgba(56, 189, 248, 0.1); }
            
            .faq-button { background: none; border: none; width: 100%; padding: 20px; text-align: right; font-size: 1.15rem; font-weight: bold; color: #f8fafc; cursor: pointer; position: relative; font-family: 'Heebo', sans-serif; transition: color 0.3s ease; display: flex; justify-content: space-between; align-items: center; }
            .faq-button:hover { color: #38bdf8; outline: none; }
            
            /* אייקון פלוס שהופך למינוס */
            .faq-icon { font-size: 1.8rem; font-weight: 300; color: #38bdf8; transition: transform 0.3s ease, color 0.3s ease; line-height: 0; }
            .faq-item.active .faq-icon { transform: rotate(45deg); color: #ef4444; } /* צבע אדמדם (X) כשהשאלה פתוחה */

            .faq-answer { display: none; padding: 0 20px 20px 20px; font-size: 1.05rem; line-height: 1.6; color: #94a3b8; border-top: 1px solid #334155; margin: 0 20px; padding-top: 15px; }
            .faq-item.active .faq-answer { display: block; animation: fadeInFAQ 0.4s ease; }

            @keyframes fadeInFAQ {
                from { opacity: 0; transform: translateY(-5px); }
                to { opacity: 1; transform: translateY(0); }
            }

            /* עיצוב הגריד */
            .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; justify-content: center; transition: all 0.5s ease; }
            .reviews-grid.expanded { grid-template-columns: repeat(4, 1fr); } /* 4 עמודות כשפתוח */
            
            @media (max-width: 900px) { .reviews-grid, .reviews-grid.expanded { grid-template-columns: repeat(2, 1fr); } }
            @media (max-width: 600px) { .reviews-grid, .reviews-grid.expanded { grid-template-columns: 1fr; } }
            
            /* עיצוב כרטיסייה */
            .review-card { display: flex; flex-direction: column; align-items: center; cursor: pointer; user-select: none; }
            
            .review-circle { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; border: 3px solid #38bdf8; box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2); transition: transform 0.3s ease; background-color: #1e293b; }
            .review-card:hover .review-circle { transform: scale(1.08); }
            .review-circle img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
            
            .review-name { font-weight: bold; color: #f8fafc; margin-top: 15px; font-size: 18px; }
            .review-stars { color: gold; font-size: 16px; margin-top: 5px; }
            
            .review-subtext { font-size: 13px; color: #94a3b8; display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 6px; }
            .review-subtext::after { content: "➔"; font-size: 16px; transition: color 0.3s ease; }
            .review-card:hover .review-subtext::after { color: #38bdf8; }

            /* מחלקה להסתרת ההמלצות הנוספות */
            .extra-review { display: none; }
            .extra-review.show { display: flex; animation: fadeInReview 0.5s ease forwards; }

            @keyframes fadeInReview { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

            /* כפתור הצג/הסתר */
            .toggle-reviews-btn { background: #38bdf8; color: #0f172a; padding: 12px 35px; border: none; border-radius: 30px; font-size: 1.1rem; font-weight: bold; cursor: pointer; margin-top: 50px; transition: all 0.3s; box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3); font-family: inherit; }
            .toggle-reviews-btn:hover { background: #0ea5e9; transform: translateY(-3px); }

            /* מודאל (חלון קופץ) */
            .custom-modal { display: none; position: fixed; z-index: 10000; top: 0; right: 0; bottom: 0; left: 0; background-color: rgba(0,0,0,0.8); justify-content: center; align-items: center; direction: rtl; backdrop-filter: blur(5px); }
            .custom-modal-content { background-color: #1e293b; padding: 30px; max-width: 600px; width: 90%; border-radius: 15px; border: 1px solid #38bdf8; text-align: right; position: relative; font-size: 16px; line-height: 1.7; color: #cbd5e1; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
            .custom-modal-content strong { color: #f8fafc; font-size: 1.2rem; }
            .custom-modal-content .close-modal { position: absolute; left: 20px; top: 15px; font-size: 28px; color: #94a3b8; cursor: pointer; line-height: 1; }
            .custom-modal-content .close-modal:hover { color: #ef4444; }
