/*
* ZBANG - דפי נחיתה מקצועיים
* עיצוב ראשי מודרני עם אלמנטים עתידניים
*/

/* === משתנים ===*/
:root {
    --primary: #0a0e17;
    --primary-light: #0b1a33;
    --primary-dark: #091428;
    --secondary: #c0c0c0;
    --secondary-light: #e0e5ec;
    --accent: #a0a0a0;
    --dark: #0a0e17;
    --light: #f5f5f5;
    --gray: #ebebeb;
    --text: #e0e5ec;
    --text-light: #a0a0a0;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* צבעים עתידניים חדשים */
    --neon-blue: #00f3ff;
    --neon-purple: #9d00ff;
    --neon-pink: #ff00e6;
    --neon-green: #00ff9e;
    --cyber-yellow: #faff00;
    --metallic-silver: #e0e5ec;
    --metallic-gold: #d4af37;
    --dark-cyber: #0a0e17;
    --cyber-dark-blue: #0b1a33;
    
    /* גרדיאנטים */
    --gradient-silver: linear-gradient(45deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--secondary) 100%);
    --gradient-neon-blue: linear-gradient(45deg, #00f3ff 0%, #0077ff 100%);
    --gradient-neon-purple: linear-gradient(45deg, #9d00ff 0%, #ff00e6 100%);
    --gradient-neon-green: linear-gradient(45deg, #00ff9e 0%, #00ffc8 100%);
    --gradient-holographic: linear-gradient(45deg, #00f3ff 0%, #9d00ff 25%, #ff00e6 50%, #00ff9e 75%, #00f3ff 100%);
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.2s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 3px 10px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.5);
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    /* פונטים אלגנטיים */
    --font-primary: 'Heebo', 'Rubik', sans-serif;
    --font-secondary: 'Assistant', sans-serif;
    --font-heading: 'Poppins', 'Heebo', sans-serif;
}

/* === עיצוב בסיסי === */
html, body {
    background-color: var(--primary);
    color: var(--text);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--metallic-silver);
    position: relative;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
}

a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-neon-blue);
    box-shadow: 0 0 8px var(--neon-blue);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-divider {
    height: 120px;
    margin-top: -60px;
    margin-bottom: -60px;
    background-image: url('../images/wave-divider.svg');
    background-size: cover;
    background-position: center;
    z-index: 2;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-neon-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.5);
    color: var(--dark);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(160, 160, 160, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 160, 160, 0.5);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.1);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

.btn-glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--dark);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-metallic {
    background: var(--gradient-metallic);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-metallic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon i {
    transition: var(--transition);
}

.btn-icon:hover i {
    transform: translateX(4px);
}

.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.1);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--secondary-light);
    line-height: 1.7;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.metallic-card {
    background: var(--gradient-chrome);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(192, 192, 192, 0.3);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.metallic-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

.metallic-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(192, 192, 192, 0.5);
}

.reveal-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal-animation.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-slow);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* === Header & Navigation === */
.site-header {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 243, 255, 0.05);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 23, 0.95);
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: var(--font-secondary);
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 15px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    opacity: 0.7;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--neon-blue);
}

.navbar-brand img {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
}

.header-cta {
    margin-right: 15px;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    display: block;
    margin: 5px 0;
    position: relative;
    transition: var(--transition);
}

.navbar-toggler.active .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* === Hero Section === */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(11, 26, 51, 0.5) 0%, rgba(10, 14, 23, 0.8) 70%);
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--metallic-silver);
    text-shadow: 0 0 10px rgba(224, 229, 236, 0.3);
    opacity: 0.9;
}

.hero .btn-primary {
    background: var(--gradient-neon-blue);
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--dark-cyber);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon-purple);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.hero .btn-primary:hover::before {
    opacity: 1;
}

.hero .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.6);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* === Features Section === */
.about-landing-pages {
    background-color: var(--white);
    position: relative;
}

.features {
    margin-top: 50px;
}

.feature-box {
    background: linear-gradient(135deg, rgba(11, 26, 51, 0.8) 0%, rgba(10, 14, 23, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-neon-blue);
    opacity: 0.7;
    transition: var(--transition);
    z-index: -1;
}

.feature-box:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 15px rgba(0, 243, 255, 0.1);
    border-color: rgba(0, 243, 255, 0.3);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    background: var(--gradient-neon-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
}

.feature-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.feature-box p {
    color: var(--text-light);
    margin-bottom: 0;
}

.feature-box:nth-child(2n)::before {
    background: var(--gradient-neon-purple);
}

.feature-box:nth-child(2n) h3 {
    background: var(--gradient-neon-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-box:nth-child(2n) h3::after {
    background: var(--gradient-neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
}

.feature-box:nth-child(3n)::before {
    background: var(--gradient-neon-green);
}

.feature-box:nth-child(3n) h3 {
    background: var(--gradient-neon-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-box:nth-child(3n) h3::after {
    background: var(--gradient-neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* === Pricing Section === */
.pricing-section {
    background: linear-gradient(180deg, var(--cyber-dark-blue) 0%, var(--dark-cyber) 100%);
    padding: 120px 0;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.1) 0%, rgba(10, 14, 23, 0) 50%);
    z-index: -1;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, rgba(10, 14, 23, 0) 70%);
    z-index: -1;
    opacity: 0.6;
}

.pricing-cards {
    margin-top: 60px;
    position: relative;
}

.pricing-cards::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(0, 243, 255, 0) 0%, 
        rgba(0, 243, 255, 0.3) 50%, 
        rgba(0, 243, 255, 0) 100%
    );
    z-index: 1;
}

/* כרטיס מחיר כללי */
.pricing-card {
    background: linear-gradient(135deg, rgba(11, 26, 51, 0.9) 0%, rgba(10, 14, 23, 0.95) 100%);
    border-radius: var(--border-radius);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    border: 1px solid rgba(0, 243, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 2;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.15);
}

/* כרטיס מקצועי */
.basic-card::before {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
}

/* כרטיס פרימיום */
.premium-card {
    z-index: 3;
    border: 1px solid rgba(157, 0, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(157, 0, 255, 0.2);
}

.premium-card::before {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    height: 6px;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(157, 0, 255, 0.25);
}

/* כרטיס דלוקס */
.deluxe-card::before {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
}

/* תגית "מומלץ" */
.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    transform: rotate(45deg);
    background: var(--gradient-neon-purple);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(157, 0, 255, 0.4);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 5;
}

/* כותרת הכרטיס */
.card-header {
    padding: 30px 25px 15px;
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(0, 243, 255, 0.05);
}

.card-badge {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.basic-card .card-badge {
    background: linear-gradient(to right, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-card .card-badge {
    background: linear-gradient(to right, var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deluxe-card .card-badge {
    background: linear-gradient(to right, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* מחיר */
.card-price {
    margin-bottom: 10px;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.basic-card .price-value {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.premium-card .price-value {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.4);
    font-size: 3rem;
}

.deluxe-card .price-value {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 158, 0.4);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* גוף הכרטיס */
.card-body {
    padding: 25px;
    flex: 1;
}

/* רשימת מאפיינים */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.feature-list li {
    padding: 10px 35px 10px 10px;
    position: relative;
    margin-bottom: 5px;
    color: var(--secondary-light);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    background: rgba(0, 243, 255, 0.03);
    border-radius: 4px;
    color: var(--white);
}

.feature-list li i {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.basic-card .feature-list li i {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.premium-card .feature-list li i {
    color: var(--neon-purple);
    text-shadow: 0 0 5px rgba(157, 0, 255, 0.5);
}

.deluxe-card .feature-list li i {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 158, 0.5);
}

/* הערות */
.pricing-note {
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

.pricing-note p {
    margin: 0;
}

/* כפתור */
.card-footer {
    padding: 20px 25px 30px;
    text-align: center;
}

.btn-pricing {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--white);
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-holographic);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.basic-card .btn-pricing {
    background: linear-gradient(to right, var(--neon-blue), var(--neon-green));
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.premium-card .btn-pricing {
    background: linear-gradient(to right, var(--neon-purple), var(--neon-pink));
    box-shadow: 0 5px 15px rgba(157, 0, 255, 0.3);
}

.deluxe-card .btn-pricing {
    background: linear-gradient(to right, var(--neon-green), var(--neon-blue));
    box-shadow: 0 5px 15px rgba(0, 255, 158, 0.3);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    color: white;
}

.btn-pricing:hover::before {
    opacity: 1;
}

/* מידע נוסף */
.pricing-notes {
    margin-top: 70px;
}

.notes-card {
    background: rgba(11, 26, 51, 0.5);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    border: 1px solid rgba(0, 243, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.notes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.05) 0%, 
        rgba(157, 0, 255, 0.05) 50%, 
        rgba(0, 255, 158, 0.05) 100%
    );
    z-index: -1;
    border-radius: var(--border-radius);
}

.notes-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.notes-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-card ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}

.notes-card ul li i {
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
}

/* אנימציות */
@keyframes priceHover {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.pricing-card:hover .price-value {
    animation: priceHover 2s ease infinite;
}

/* תאימות למובייל */
@media (max-width: 991.98px) {
    .premium-card {
        transform: scale(1);
    }
    
    .premium-card:hover {
        transform: translateY(-15px);
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-cards {
        margin-top: 30px;
    }
    
    .card-header {
        padding: 25px 20px 15px;
    }
    
    .card-body,
    .card-footer {
        padding: 20px;
    }
    
    .price-value {
        font-size: 2.4rem;
    }
    
    .premium-card .price-value {
        font-size: 2.6rem;
    }
    
    .notes-card {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .price-value {
        font-size: 2.2rem;
    }
    
    .premium-card .price-value {
        font-size: 2.4rem;
    }
    
    .feature-list li {
        font-size: 0.95rem;
    }
}

/* === Why Choose Us Section === */
.why-choose-us {
    background-color: var(--white);
    position: relative;
}

.advantage-item {
    display: flex;
    margin-bottom: 40px;
    transition: var(--transition);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border: 1px solid rgba(192, 192, 192, 0.3);
    animation: borderGlow 2s infinite;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    background: var(--gradient-metallic);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-left: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.advantage-item:hover .advantage-icon {
    border-radius: 50%;
    transform: rotate(10deg);
    animation: neonGlow 2s infinite;
}

.advantage-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.advantage-content p {
    margin-bottom: 0;
}

/* === Contact Section === */
.contact-section {
    background: var(--light);
    position: relative;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.detail-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-left: 15px;
    box-shadow: 0 5px 15px rgba(78, 87, 212, 0.3);
    transition: var(--transition);
}

.detail-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(78, 87, 212, 0.5);
}

.contact-form {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-deep);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-deep), var(--shadow-neon);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--gray);
    transition: var(--transition);
    font-size: 16px;
    height: auto;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
}

/* === Newsletter Section === */
.new-customers {
    background: linear-gradient(135deg, var(--cyber-dark-blue) 0%, var(--dark-cyber) 100%);
    padding: 80px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.new-customers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 243, 255, 0.1) 0%, rgba(10, 14, 23, 0) 60%);
    z-index: -1;
}

.new-customers::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-blue) 0%, rgba(0, 243, 255, 0) 70%);
    filter: blur(40px);
    opacity: 0.5;
    animation: pulse 6s infinite alternate;
}

.newsletter-box {
    background: rgba(11, 26, 51, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 243, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple), var(--neon-green));
    opacity: 0.8;
}

.newsletter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 243, 255, 0.15);
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-light);
    opacity: 0.9;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    height: 50px;
    background: rgba(10, 14, 23, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--text);
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    background: rgba(11, 26, 51, 0.8);
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.newsletter-form .btn {
    height: 50px;
    padding: 0 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    border: none;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.5);
}

/* === אפקטים לסקשן לקוחות חדשים === */

/* אפקט קו זוהר שנע */
.glow-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(0, 243, 255, 0) 0%, 
        rgba(0, 243, 255, 0.8) 50%, 
        rgba(0, 243, 255, 0) 100%
    );
    animation: moveRightGlow 2s linear forwards;
    z-index: 5;
}

@keyframes moveRightGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* אנימציות נוספות לסקשן לקוחות חדשים */
.newsletter-content h2, 
.newsletter-content p {
    animation: fadeInUp 0.8s ease forwards;
}

.newsletter-content p {
    animation-delay: 0.3s;
}

.newsletter-form {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* אנימציה למעבר עכבר על שדות הטופס */
.newsletter-form .form-control {
    transition: all 0.3s ease;
    background-size: 200% auto;
    background-position: 0 0;
}

.newsletter-form .form-control:focus {
    transform: translateY(-2px);
    border-color: var(--neon-blue);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

/* תוסף אנימציית פעימה לכפתור */
.newsletter-form .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.5s ease;
}

.newsletter-form .btn:hover::before {
    left: 100%;
    transition: all 0.5s ease;
}

/* עדכון האנימציה של כותרות */
.section-header h2 {
    transition: all 0.3s ease, background-position 8s ease;
    transform-style: preserve-3d;
}

.section-header h2, .elegant-heading {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* === אפקט כותרות אלגנטי ועתידני === */
.elegant-heading,
.section-header h2 {
    position: relative;
    font-weight: 700;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 8s ease infinite;
    position: relative;
    letter-spacing: -0.02em;
}

.elegant-heading::after,
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    transition: width 0.5s ease;
}

.section-header:hover h2::after {
    width: 100px;
}

.section-header h2 {
    display: inline-block;
}

.section-header {
    position: relative;
}

/* הסרת האפקט הישן של פולס טקסט */
@keyframes textPulse {
    0% { opacity: 0.1; transform: scale(1.02); filter: blur(8px); }
    100% { opacity: 0.3; transform: scale(1); filter: blur(12px); }
}

/* אנימציה חדשה לזרימת גרדיאנט */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* התאמה לכל רזולוציה */
@media (max-width: 991.98px) {
    .newsletter-box {
        padding: 30px;
    }
    
    .newsletter-content {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form .btn {
        margin-top: 0;
    }
    
    .elegant-heading::after,
    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .newsletter-box {
        padding: 25px;
    }
    
    .newsletter-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .new-customers {
        padding: 60px 0;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        height: 45px;
    }
}

/* === Footer === */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    bottom: 0;
    right: 0;
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-menu li a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li i {
    position: absolute;
    right: 0;
    top: 5px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: var(--transition);
    opacity: 0;
    z-index: -1;
}

.social-link:hover:before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* === Media Queries === */
@media (max-width: 1200px) {
    .main-title {
        font-size: 42px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 991px) {
    section {
        padding: 70px 0;
    }

    .main-title {
        font-size: 36px;
    }

    .hero-section {
        padding: 150px 0 70px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .price-box.featured {
        transform: translateY(0) scale(1);
    }

    .price-box.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 32px;
    }

    .main-title {
        font-size: 30px;
    }

    .subtitle {
        font-size: 18px;
    }

    .hero-section {
        padding: 140px 0 60px;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom-links {
        margin-top: 10px;
    }

    .newsletter-form .form-row > div {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .contact-details {
        flex-direction: column;
    }
}

/* === Animation Utilities === */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1s ease-out;
}

.slide-right {
    animation: slideRight 1s ease-out;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

.neon-glow {
    animation: neonGlow 2s infinite;
}

.gradient-shift {
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* === עדכוני תצוגת סקשנים === */
.about-landing-pages, .pricing-section, .why-choose-us, .contact-section, .new-customers {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    position: relative;
}

/* רקע סקשנים עם אפקט עתידני */
.about-landing-pages {
    background: linear-gradient(180deg, var(--dark-cyber) 0%, var(--cyber-dark-blue) 100%);
    box-shadow: 0 -30px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.about-landing-pages::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--dark-cyber) 90%);
    z-index: 1;
}

.pricing-section {
    background: linear-gradient(180deg, var(--cyber-dark-blue) 0%, var(--dark-cyber) 100%);
    padding: 120px 0;
    position: relative;
    z-index: 3;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.1) 0%, rgba(10, 14, 23, 0) 50%);
    z-index: -1;
}

.why-choose-us {
    background: linear-gradient(180deg, var(--dark-cyber) 0%, var(--cyber-dark-blue) 70%);
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgba(10, 14, 23, 0) 0%, rgba(157, 0, 255, 0.05) 100%);
    z-index: -1;
}

.new-customers {
    background: linear-gradient(180deg, var(--cyber-dark-blue) 0%, var(--dark-cyber) 100%);
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.contact-section {
    background: linear-gradient(180deg, var(--dark-cyber) 0%, var(--primary-dark) 100%);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

/* === עדכון עיצוב ההדר והסקשן הראשי === */
.site-header {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 243, 255, 0.05);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.navbar-brand img {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--neon-blue);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 15px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon-blue);
    transform: translateX(-100%);
    transition: var(--transition);
    opacity: 0;
    box-shadow: 0 0 15px var(--neon-blue);
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    transform: translateX(0);
    opacity: 1;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

/* === עדכון סקשן הירו === */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(11, 26, 51, 0.5) 0%, rgba(10, 14, 23, 0.8) 70%);
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--metallic-silver);
    text-shadow: 0 0 10px rgba(224, 229, 236, 0.3);
    opacity: 0.9;
}

.hero .btn-primary {
    background: var(--gradient-neon-blue);
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--dark-cyber);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon-purple);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.hero .btn-primary:hover::before {
    opacity: 1;
}

.hero .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.6);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* === עדכון עיצוב טופס יצירת קשר === */
.contact-form {
    background: linear-gradient(135deg, rgba(11, 26, 51, 0.9) 0%, rgba(10, 14, 23, 0.95) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.form-control {
    background: rgba(10, 14, 23, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.1);
    color: var(--text);
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    margin-bottom: 20px;
}

.form-control:focus {
    background: rgba(11, 26, 51, 0.8);
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    color: var(--text);
}

.form-control::placeholder {
    color: var(--text-light);
}

.btn-contact {
    background: var(--gradient-neon-blue);
    color: var(--dark-cyber);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-holographic);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-contact:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.btn-contact:hover::before {
    opacity: 1;
}

/* === עדכון פוטר === */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 243, 255, 0.03) 0%, rgba(10, 14, 23, 0) 50%);
    z-index: -1;
}

.footer-logo {
    margin-bottom: 25px;
    display: inline-block;
}

.footer-logo img {
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.3));
}

.footer h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    background: var(--gradient-holographic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.footer-links li a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
    transform: translateX(5px);
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(11, 26, 51, 0.5);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-neon-blue);
    color: var(--dark-cyber);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    transform: translateY(-5px);
}

/* === אנימציות ואפקטים === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

.svg-metallic {
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.3));
    animation: svgPulse 4s ease-in-out infinite;
}

@keyframes svgPulse {
    0% { filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.2)); }
    50% { filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.2)); }
}

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5),
                0 0 10px rgba(0, 243, 255, 0.3),
                0 0 15px rgba(0, 243, 255, 0.2);
}

.neon-text-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 5px rgba(157, 0, 255, 0.5),
                0 0 10px rgba(157, 0, 255, 0.3),
                0 0 15px rgba(157, 0, 255, 0.2);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 158, 0.5),
                0 0 10px rgba(0, 255, 158, 0.3),
                0 0 15px rgba(0, 255, 158, 0.2);
}

.metallic-text {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(224, 229, 236, 0.3);
}

.holographic-text {
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.2);
    position: relative;
}

/* === תאימות מובייל === */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .navbar-dark .navbar-nav {
        padding: 20px 0;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 12px 20px;
        border-radius: 4px;
    }
    
    .navbar-dark .navbar-nav .nav-link::before {
        bottom: auto;
        left: 0;
        top: 50%;
        width: 3px;
        height: 0;
        transform: translateY(-50%);
    }
    
    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 3px;
        height: 70%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-landing-pages, .pricing-section, .why-choose-us, .contact-section, .new-customers {
        padding: 80px 0;
    }
    
    .feature-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        width: 100%;
    }
    
    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .logo {
        height: 32px;
    }
}

/* === מודרניזציה של תמונת ההירו עם אפקט מסיכה אלגנטי === */
.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%; /* שינוי לצורה עגולה */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    z-index: 2;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: subtleRotate 6s ease-in-out infinite;
    max-width: 85%;
    height: auto;
    aspect-ratio: 1/1; /* שמירה על יחס מושלם של עיגול */
    display: block;
    margin: 0 auto;
    border: 3px solid rgba(0, 243, 255, 0.3);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.4) 0%, 
        rgba(157, 0, 255, 0.2) 50%, 
        rgba(0, 255, 158, 0.4) 100%);
    opacity: 0.5;
    z-index: 1;
    mix-blend-mode: overlay;
    border-radius: 50%; /* גם למסיכה צורה עגולה */
    mask-image: radial-gradient(circle, #000 70%, transparent 100%);
    mask-size: 200% 200%;
    animation: maskShift 6s linear infinite alternate;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--neon-blue), 
        var(--neon-purple),
        var(--neon-green));
    z-index: -1;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(8px);
    animation: borderGlow 4s ease-in-out infinite alternate;
}

@keyframes maskShift {
    0% { mask-position: 0% 0%; }
    100% { mask-position: 100% 100%; }
}

@keyframes subtleRotate {
    0% { transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1); }
    25% { transform: perspective(1000px) rotateX(1deg) rotateY(0.5deg) scale(1.02); }
    50% { transform: perspective(1000px) rotateX(0deg) rotateY(1deg) scale(1); }
    75% { transform: perspective(1000px) rotateX(-1deg) rotateY(0.5deg) scale(1.02); }
    100% { transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1); }
}

@keyframes borderGlow {
    0% { opacity: 0.5; filter: blur(8px); }
    50% { opacity: 0.8; filter: blur(12px); }
    100% { opacity: 0.5; filter: blur(8px); }
}

/* === עיצוב עמודי מדיניות === */
.page-header {
    background: linear-gradient(180deg, var(--dark-cyber) 0%, var(--cyber-dark-blue) 100%);
    padding: 140px 0 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.1) 0%, rgba(10, 14, 23, 0) 70%);
    z-index: -1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-content,
.terms-content,
.accessibility-content {
    background: rgba(11, 26, 51, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 243, 255, 0.1);
    color: var(--text);
}

.policy-content h2,
.terms-content h2,
.accessibility-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
} 

/* === כפתור וואצאפ קבוע === */
.whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px; /* שינוי לצד שמאל כפי שהתבקשנו */
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn i {
    margin-top: 1px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* === כפתור נגישות UserWay === */
.accessibility-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

/* תאימות מסכים קטנים */
@media (max-width: 767.98px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 30px;
        left: 30px;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 20px;
        left: 20px;
    }
}

/* === עיצוב כותרת דף (Page Header) === */
.page-header {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 150px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(0, 243, 255, 0.15) 0%, rgba(10, 14, 23, 0) 70%);
    z-index: -1;
}

.page-header h1 {
    margin-bottom: 20px;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.page-header .lead {
    font-size: 1.2rem;
    color: var(--metallic-silver);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top left, var(--primary-light) 50%, transparent 50%);
    z-index: 2;
}

/* === תיק עבודות (Portfolio) === */
.portfolio-filter {
    padding: 30px 0;
    background: var(--primary-light);
    position: relative;
    z-index: 5;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(11, 26, 51, 0.6);
    color: var(--text-light);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
    border-color: rgba(0, 243, 255, 0.3);
}

.filter-btn.active {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: var(--dark-cyber);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
    font-weight: 600;
}

.portfolio-grid {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 50px 0 80px;
    position: relative;
    z-index: 1;
}

.portfolio-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, rgba(157, 0, 255, 0.1) 0%, rgba(10, 14, 23, 0) 70%);
    z-index: -1;
}

.portfolio-container {
    position: relative;
}

.portfolio-item {
    transition: all 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    opacity: 0;
    transform: translateY(20px);
}

.portfolio-item.show {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card {
    background: linear-gradient(135deg, rgba(11, 26, 51, 0.9) 0%, rgba(10, 14, 23, 0.95) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 243, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 243, 255, 0.05);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.portfolio-image img {
    transition: all 0.8s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.8) 0%, rgba(157, 0, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 0.9;
}

.portfolio-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.portfolio-card:hover .portfolio-buttons {
    transform: translateY(0);
    opacity: 1;
}

.view-project-btn,
.visit-site-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white);
    background: rgba(10, 14, 23, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-project-btn i,
.visit-site-btn i {
    margin-left: 5px;
}

.view-project-btn:hover,
.visit-site-btn:hover {
    background: var(--dark-cyber);
    color: var(--neon-blue);
    transform: translateX(-3px);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, var(--white), var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-card:hover .portfolio-content h3 {
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.tag {
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-blue);
    border-radius: 30px;
    padding: 3px 12px;
    font-size: 0.75rem;
}

/* חלונית מודלית פרויקט */
.portfolio-modal .modal-content {
    background: linear-gradient(135deg, rgba(11, 26, 51, 0.95) 0%, rgba(10, 14, 23, 0.98) 100%);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.portfolio-modal .modal-header {
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    padding: 20px 30px;
}

.portfolio-modal .modal-title {
    color: var(--neon-blue);
    font-size: 1.4rem;
}

.portfolio-modal .btn-close {
    color: var(--text-light);
    opacity: 0.8;
}

.portfolio-modal .modal-body {
    padding: 30px;
}

.project-details {
    color: var(--text-light);
}

.project-details h3 {
    color: var(--metallic-silver);
    font-size: 1.2rem;
    margin: 20px 0 15px;
    position: relative;
    padding-bottom: 8px;
}

.project-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--neon-blue);
}

.project-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.project-details li {
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
}

.project-details li strong {
    color: var(--neon-green);
    display: inline-block;
    margin-left: 5px;
}

/* סקשן CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    z-index: 2;
}

.cta-box {
    background: rgba(11, 26, 51, 0.7);
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(157, 0, 255, 0.1);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--neon-purple), var(--neon-pink));
    opacity: 0.8;
}

.cta-box h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-box p {
    color: var(--metallic-silver);
    margin-bottom: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.cta-box .btn {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* === עיצוב מאמרים (Blog) === */
.blog-search {
    background: var(--primary-light);
    padding: 30px 0;
    position: relative;
}

.search-box {
    margin-bottom: 20px;
}

.search-box .form-control {
    height: 50px;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    background: rgba(10, 14, 23, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--text);
}

.search-box .form-control:focus {
    background: rgba(11, 26, 51, 0.8);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    padding: 0 25px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
}

.blog-categories {
    text-align: center;
    margin-top: 20px;
}

.category-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: rgba(11, 26, 51, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.category-tag:hover {
    color: var(--neon-blue);
    background: rgba(11, 26, 51, 0.8);
    transform: translateY(-2px);
    border-color: rgba(0, 243, 255, 0.3);
}

.category-tag.active {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: var(--dark-cyber);
    border-color: transparent;
    font-weight: 600;
}

.blog-grid {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 50px 0 80px;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: linear-gradient(135deg, rgba(11, 26, 51, 0.9) 0%, rgba(10, 14, 23, 0.95) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 243, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 243, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.show {
    opacity: 1;
    transform: translateY(0);
}

.blog-card.hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: all 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: var(--dark-cyber);
    padding: 10px;
    border-radius: 5px;
}

/* אנימציה לטקסט */
@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(0, 243, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(0, 243, 255, 0.6), 0 0 30px rgba(0, 243, 255, 0.3); }
    100% { text-shadow: 0 0 10px rgba(0, 243, 255, 0.3); }
}

/* תאימות לטלפונים ניידים */
@media (max-width: 991.98px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .portfolio-filter {
        padding: 20px 0;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .portfolio-card {
        margin-bottom: 20px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
    
    .portfolio-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-search {
        padding: 20px 0;
    }
    
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-box {
        padding: 30px;
    }
    
    .newsletter-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 25px;
        text-align: center;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .cta-box .btn {
        margin-top: 20px;
        width: 100%;
    }
    
    .blog-date {
        padding: 8px;
    }
    
    .blog-date .day {
        font-size: 1.1rem;
    }
    
    .blog-date .month {
        font-size: 0.7rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .stats {
        width: 100%;
    }
    
    .newsletter-form .btn {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

@media (max-width: 575.98px) {
    .filter-btn {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .portfolio-content h3,
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-overlay {
        padding: 15px;
    }
    
    .view-project-btn,
    .visit-site-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .tags {
        margin-bottom: 5px;
    }
    
    .tag {
        padding: 2px 8px;
        font-size: 0.7rem;
    }
    
    .category-tag {
        padding: 4px 12px;
        font-size: 0.8rem;
    }
    
    .newsletter-box {
        padding: 20px;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        height: 45px;
    }
}
.portfolio-item {
    opacity: 1   !important;
    transform: none !important;
  }
  /* === Portfolio items animation & layout === */
.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .portfolio-item {
    width: calc(33.333% - 1rem);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  @media (max-width: 991px) {
    .portfolio-item { width: calc(50% - 1rem); }
  }
  @media (max-width: 575px) {
    .portfolio-item { width: 100%; }
  }
  
  .portfolio-item.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Filter buttons styling */
  .filter-buttons {
    text-align: center;
    margin-bottom: 2rem;
  }
  .filter-btn {
    display: inline-block;
    margin: 0 0.5rem 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 30px;
    border: 2px solid var(--neon-blue);
    background: transparent;
    color: var(--neon-blue);
    cursor: pointer;
    transition: var(--transition-fast);
  }
  .filter-btn:hover {
    background: var(--neon-blue);
    color: var(--dark-cyber);
  }
  .filter-btn.active {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    color: var(--dark-cyber);
  }
  /* === עיצוב כפתורים מתחת לכרטיס === */
.portfolio-card-footer {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background: rgba(10,14,23,0.8);
    border-top: 1px solid rgba(0,243,255,0.1);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
  
  /* עיצוב הכפתורים */
  .view-project-btn,
  .visit-site-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  /* כפתור פרטים – צבע בסיסי */
  .view-project-btn {
    background: rgba(0,243,255,0.1);
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
  }
  .view-project-btn:hover {
    background: var(--neon-blue);
    color: var(--dark-cyber);
  }
  
  /* כפתור ביקור – צבע משני */
  .visit-site-btn {
    background: rgba(157,0,255,0.1);
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
  }
  .visit-site-btn:hover {
    background: var(--neon-purple);
    color: var(--dark-cyber);
  }
  
  /* הסרת ה-overlay (במקרה שהשארת אותו) */
  .portfolio-card .portfolio-overlay {
    display: none !important;
  }
  /* מודאל מעודכן עם רקע מטושטש */
.portfolio-modal .modal-backdrop {
    backdrop-filter: blur(4px);
  }
  .portfolio-modal .modal-content {
    background: rgba(11,26,51,0.9);
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  /* כותרת המודאל */
  .portfolio-modal .modal-header {
    border-bottom: 1px solid rgba(0,243,255,0.1);
    padding: 1rem 1.5rem;
  }
  .portfolio-modal .modal-title {
    color: var(--neon-blue);
    font-size: 1.3rem;
  }
  
  /* כפתור סגירה מותאם */
  .portfolio-modal .btn-close {
    filter: invert(1);
    opacity: 0.7;
    transition: var(--transition-fast);
  }
  .portfolio-modal .btn-close:hover {
    opacity: 1;
  }
  
  /* גוף המודאל */
  .portfolio-modal .modal-body {
    padding: 1.5rem;
    color: var(--text-light);
  }
  
  /* פרטי פרויקט בצד ימין */
  .portfolio-modal .project-details {
    background: rgba(10,14,23,0.7);
    border-radius: var(--border-radius);
    padding: 1rem;
  }
  .portfolio-modal .project-details h3 {
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
  }
  .portfolio-modal .project-details ul li strong {
    color: var(--neon-green);
  }
  
  /* כפתור ביקור כחול במודאל */
  .portfolio-modal .modal-body .btn-primary {
    background: var(--neon-blue);
    border: none;
    color: var(--dark-cyber);
    margin-top: 1rem;
  }
  /* === Elegant Modal Styles === */
.elegant-modal .modal-backdrop {
    backdrop-filter: blur(4px);
    background-color: rgba(0,0,0,0.6) !important;
  }
  
  .elegant-modal .modal-dialog {
    max-width: 800px;
    margin: 2rem auto;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .elegant-modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
  }
  
  .elegant-modal .modal-content {
    background: rgba(20,24,38,0.97);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.8);
    overflow: hidden;
  }
  
  .elegant-modal .modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #00f3ff, #9d00ff);
  }
  .elegant-modal .modal-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .elegant-modal .btn-close {
    filter: invert(1);
    opacity: 0.7;
  }
  .elegant-modal .btn-close:hover {
    opacity: 1;
  }
  
  .elegant-modal .modal-body {
    padding: 1.5rem;
    color: #e0e5ec;
  }
  .elegant-modal .project-details {
    background: rgba(11,14,23,0.6);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.4);
  }
  .elegant-modal .project-details h3 {
    color: #9d00ff;
    margin-bottom: 0.75rem;
  }
  .elegant-modal .project-details ul li strong {
    color: #00ff9e;
  }
  /* ====== תיקון תצוגת המודל ====== */

/* ודא שכל מודל עם המחלקה elegant-modal יהיה מעל כל האלמנטים */
.modal.elegant-modal {
    position: fixed;      /* תמיד יחסית לחלון */
    top: 0;
    left: 0;
    width: 100vw;         /* יתפוס את כל רוחב המסך */
    height: 100vh;        /* יתפוס את כל גובה המסך */
    z-index: 9999 !important; /* מעל כל השאר */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* נתוני התוכן בתוך המודל */
  .modal.elegant-modal .modal-dialog {
    max-width: 90vw;      /* יתאים כמעט לכל רזולוציה */
    margin: 0 auto;
  }
  
  /* ה־backdrop (הרקע העכור) */
  .modal-backdrop {
    z-index: 9998 !important;
  }
  
  /* מעט עיצוב נוסף למראה נקי יותר */
  .modal.elegant-modal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
  }
  
  /* כדי למנוע גלילה מתחת למודל */
  body.modal-open {
    overflow: hidden;
  }
  /* ====== תיקון תצוגת המודל ====== */

/* ה-modal עצמו — מעל כל השאר */
.modal.elegant-modal {
    position: fixed;        /* יישאר תמיד בתוך החלון */
    top: 0;
    left: 0;
    width: 100vw;           /* יתפוס את כל רוחב החלון */
    height: 100vh;          /* יתפוס את כל גובה החלון */
    display: flex;          
    align-items: center;    
    justify-content: center; 
    z-index: 9999 !important; /* מעל כל האלמנטים האחרים  */
    pointer-events: auto;   /* כך שהלחיצות יעברו לתוכן הפנימי */
  }
  
  /* ה-backdrop (הרקע העכור) — רק מתחת למודל */
  .modal-backdrop.show {
    z-index: 9998 !important;
    pointer-events: auto;   /* כדי שייקע לחיצה עליו אם רוצים לסגור */
  }
  
  /* כשפתוח modal, תמנע גלילה בעמוד */
  body.modal-open {
    overflow: hidden;
  }
  
  /* עיצוב כללי ל־content של המודל */
  .modal.elegant-modal .modal-dialog {
    max-width: 90vw;        /* יתאים כלפי רוחב שונות הרזולוציות */
    margin: 0 auto;
  }
  .modal.elegant-modal .modal-content {
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    overflow: hidden;
  }
  /* ===== תיקון pointer-events במודל ===== */

/* לוודא שהמודל וכול האלמנטים בתוכו יקלטו קליקים */
.modal.elegant-modal,
.modal.elegant-modal .modal-dialog,
.modal.elegant-modal .modal-content,
.modal.elegant-modal .modal-content * {
  pointer-events: auto !important;
}

/* לבטל קליקים על הרקע העכור (backdrop) */
.modal-backdrop {
  pointer-events: none !important;
}

/* תיקון חדש למודאל - יתקן את הבעיה */
.modal {
  z-index: 1055 !important;
}

.modal-backdrop {
  z-index: 1050 !important;
}

.modal-dialog {
  z-index: 1056 !important;
}

.modal-open .modal {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.btn-close {
  z-index: 1060 !important;
  position: relative;
  opacity: 1 !important;
  filter: invert(1);
}

.modal.show .modal-dialog {
  pointer-events: auto !important;
}

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden !important;
}

/* חשוב! תיקוני מודאל - נוספו ב-5 ספטמבר 2023 */
.modal-backdrop {
  z-index: 1040 !important;
  pointer-events: auto !important; /* חשוב לסגירה של המודאל בלחיצה מחוץ לתוכן */
}

.modal {
  z-index: 1045 !important;
}

.modal-dialog {
  z-index: 1050 !important;
}

.modal * {
  pointer-events: auto !important; /* חשוב לתפעול תקין של כפתורים במודאל */
}

/* תיקוני סינון פורטפוליו */
.portfolio-item.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  display: block !important;
}

.portfolio-item {
  transition: opacity 0.5s ease, transform 0.5s ease !important;
}

/* וידוא שהמודאל יהיה מעל הכל */
.portfolio-modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* === Neon-glow ל‐Navbar Toggler === */
.navbar-toggler .toggler-icon {
    background-color: var(--neon-blue) !important;
    box-shadow: 
        0 0 8px var(--neon-blue),
        inset 0 0 5px var(--neon-blue);
    transition: all 0.3s ease;
}

.navbar-toggler:hover .toggler-icon {
    box-shadow:
        0 0 15px var(--neon-green),
        inset 0 0 10px var(--neon-green);
}

/* אנימציית פלאש ניאון לכפתור פתוח */
@keyframes neonFlash {
    0%,100% { box-shadow: 0 0 8px var(--neon-purple); }
    50%   { box-shadow: 0 0 20px var(--neon-purple); }
}
.navbar-toggler.active .toggler-icon {
    animation: neonFlash 1s ease-in-out infinite alternate;
}

/* === סדר מחדש של אלמנטים במובייל === */
@media (max-width: 767.98px) {
    /* נדאג שהתפריט יופיע ראשון, אחריו הכותרת והכפתור, ואז התמונה */
    .site-header .navbar-nav { order: 1; }
    .hero-content         { order: 2; text-align: center; }
    .header-cta           { order: 3; margin: 20px auto; display: block; }
    .hero-image           { order: 4; margin: 20px auto; }

    /* נרחיב קצת את הגריידיאנט לכפתור במובייל */
    .hero .btn-primary {
        padding: 14px 40px;
        font-size: 1.2rem;
    }
}

/* שיפור ל-desktop: לאפשר נצנוץ עדין בלחיצה על Toggle */
@media (min-width: 768px) {
    .navbar-toggler:active .toggler-icon {
        animation: neonFlash 0.5s ease alternate;
    }
}

/* =========================================
   Mobile Menu Overlay – קליפ־פאת’ דינמי
   ========================================= */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(
    circle at var(--overlay-x) var(--overlay-y),
    rgba(0,243,255,0.15) 0%,
    rgba(10,14,23,0.95) 80%
  );
  clip-path: circle(0% at var(--overlay-x) var(--overlay-y));
  transition: clip-path 0.8s cubic-bezier(.36,.07,.19,.97),
              background 0.8s ease;
  z-index: 999;
  pointer-events: none;
}

/* כשהתפריט פתוח – מרחיבים את העיגול */
body.mobile-nav-active .mobile-nav-overlay {
  clip-path: circle(150% at var(--overlay-x) var(--overlay-y));
  pointer-events: auto;
}

/* מבנה האנימציה של הקישורים */
.mobile-nav-overlay .navbar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mobile-nav-overlay .nav-link {
  opacity: 0;
  transform: translateX(-40px);
  text-shadow: 0 0 8px var(--neon-blue);
  animation: slideInLink 0.6s forwards;
}

/* אנימציית כניסה מדורגת */
@keyframes slideInLink {
  to { opacity: 1; transform: translateX(0); }
}

/* הגדרת עיכובים לפי סדר (עד 8 קישורים) */
.mobile-nav-overlay .nav-link:nth-child(1) { animation-delay: 0.2s; }
.mobile-nav-overlay .nav-link:nth-child(2) { animation-delay: 0.35s; }
.mobile-nav-overlay .nav-link:nth-child(3) { animation-delay: 0.5s; }
.mobile-nav-overlay .nav-link:nth-child(4) { animation-delay: 0.65s; }
.mobile-nav-overlay .nav-link:nth-child(5) { animation-delay: 0.8s; }
.mobile-nav-overlay .nav-link:nth-child(6) { animation-delay: 0.95s; }

/* =========================================
   Neon-glow לחצן התפריט (“Hamburger”)
   ========================================= */
.navbar-toggler .toggler-icon {
  background-color: var(--neon-blue);
  box-shadow:
    0 0 6px var(--neon-blue),
    inset 0 0 4px var(--neon-blue);
  transition: all 0.3s ease;
}

.navbar-toggler:hover .toggler-icon {
  box-shadow:
    0 0 12px var(--neon-green),
    inset 0 0 6px var(--neon-green);
}

/* אנימציית הבהוב כשהתפריט פתוח */
@keyframes neonFlash {
  0%,100% { box-shadow: 0 0 6px var(--neon-purple); }
  50%     { box-shadow: 0 0 20px var(--neon-purple); }
}
.navbar-toggler.active .toggler-icon {
  animation: neonFlash 1s ease-in-out infinite alternate;
}

/* =========================================
   סדר מחדש של Hero במובייל
   ========================================= */
@media (max-width: 767.98px) {
  /* Overlay תמיד מעל הכל */
  .mobile-nav-overlay { z-index: 998; }

  /* Hero Content order */
  .site-header .navbar-nav { order: 1; }
  .hero-content         { order: 2; text-align: center; }
  .header-cta           { order: 3; margin: 20px auto; display: block; }
  .hero-image           { order: 4; margin: 20px auto; }

  /* כפתור ראשי קצת יותר בולט */
  .hero .btn-primary {
      padding: 14px 40px;
      font-size: 1.2rem;
  }
}

/* =========================================
   Feature Illustration 3D & Mask Effect
   ========================================= */
.feature-illustration-wrapper {
  position: relative;
  display: inline-block;
  perspective: 1200px;
  --mask-x: 50%;
  --mask-y: 50%;
}

.feature-illustration-wrapper img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
  transform: rotateY(0deg) rotateX(0deg) scale(1);
  transition: transform 0.8s ease-out;
}

.feature-illustration-wrapper:hover img {
  transform: rotateY(12deg) rotateX(4deg) scale(1.05);
}

/* שכבת מסיכה הולוגרפית על התמונה */
.feature-illustration-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    45deg,
    var(--neon-blue) 0%, var(--neon-purple) 30%,
    var(--neon-green) 60%, var(--neon-blue) 100%
  );
  mix-blend-mode: overlay;
  mask-image: radial-gradient(
    circle at var(--mask-x) var(--mask-y),
    #000 20%, transparent 60%
  );
  transition: mask-position 0.3s ease-out;
  pointer-events: none;
}

/* כשעוברים עם העכבר – המסיכה עוקבת אחרי המיקום */

/* אפקט תנועה קבועה במובייל */
/* גלובל, בחלק העליון או מתחת לכל ה־@media האחרים */
@-webkit-keyframes tiltMobile {
  0%   { transform: rotateY(8deg)  rotateX(2deg)  scale(1.05); }
  50%  { transform: rotateY(-8deg) rotateX(-2deg) scale(1.05); }
  100% { transform: rotateY(8deg)  rotateX(2deg)  scale(1.05); }
}
@keyframes tiltMobile {
  0%   { transform: rotateY(8deg)  rotateX(2deg)  scale(1.05); }
  50%  { transform: rotateY(-8deg) rotateX(-2deg) scale(1.05); }
  100% { transform: rotateY(8deg)  rotateX(2deg)  scale(1.05); }
}


/* תוסיף ליד השורש של CSS שלך (או מתחת לכללי הקונטיינר) */
.feature-illustration-wrapper {
  perspective: 800px;
}
.feature-illustration-wrapper img {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}
@media (max-width: 767.98px) {
  .feature-illustration-wrapper img {
    /* להוסיף גם -webkit-animation */
    animation: tiltMobile 12s ease-in-out infinite alternate;
    -webkit-animation: tiltMobile 12s ease-in-out infinite alternate;
  }
}

/* === HERO IMAGE NEON CIRCLE EFFECT – ZBANG LEVEL === */
/* === HERO CYBER ULTRA DYNAMIC EFFECT === */
.hero {
  position: relative;
  background: linear-gradient(180deg, #0a0e17 0%, #0b1a33 100%);
  overflow: hidden;
  padding-top: 120px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.06), transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(157, 0, 255, 0.06), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 158, 0.05), transparent 60%);
  animation: heroBackdropSpin 60s linear infinite;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 2px);
  background-size: 60px 60px;
  opacity: 0.1;
  animation: subtleStars 18s linear infinite;
  z-index: 0;
}

/* ערפל עדין */
.hero .neon-haze {
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.05), transparent 70%);
  animation: hazePulse 10s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

/* עטיפת תמונת הירו */
.hero-image-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  perspective: 2000px;
  transform-style: preserve-3d;
  z-index: 2;
  animation: heroFloat 12s ease-in-out infinite alternate;
  box-shadow:
    0 0 45px rgba(0,243,255,0.3),
    0 0 90px rgba(157,0,255,0.15),
    0 0 120px rgba(255,0,230,0.1);
}
.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, #00fff0, #9d00ff, #00ff90, #00fff0);
  filter: blur(120px);
  opacity: 0.6;
  animation: spinHue 18s linear infinite, pulseGlow 5s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: 3;
  animation: rotateFrame 30s linear infinite;
  pointer-events: none;
}

/* תמונת ההירו */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transform: scale(1);
  animation: deepZoomAndDrift 20s ease-in-out infinite alternate;
  filter:
    drop-shadow(0 0 50px rgba(0,243,255,0.2))
    drop-shadow(0 0 30px rgba(157,0,255,0.1));
}

/* === אנימציות === */
@keyframes spinHue {
  0%   { transform: rotate(0deg); filter: hue-rotate(0deg); }
  100% { transform: rotate(360deg); filter: hue-rotate(360deg); }
}
@keyframes pulseGlow {
  0%   { opacity: 0.3; filter: blur(80px); }
  100% { opacity: 0.7; filter: blur(130px); }
}
@keyframes heroFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(10px); }
}
@keyframes deepZoomAndDrift {
  0%   { transform: scale(1.05) translate(0px, 0px); }
  25%  { transform: scale(1.15) translate(-5px, 2px); }
  50%  { transform: scale(1.22) translate(4px, -3px); }
  75%  { transform: scale(1.18) translate(-2px, 5px); }
  100% { transform: scale(1.25) translate(3px, -4px); }
}
@keyframes rotateFrame {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes heroBackdropSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes subtleStars {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.3; background-position: 30px 30px; }
}
@keyframes hazePulse {
  0% { transform: scale(1); opacity: 0.05; }
  100% { transform: scale(1.2); opacity: 0.12; }
}

/* 📱 רספונסיביות */
@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
  }
  .hero-image-wrapper {
    width: 260px;
    height: 260px;
  }
  .hero-img {
    animation: deepZoomAndDrift 26s ease-in-out infinite alternate;
  }
}
@media (min-width: 992px) {
  .hero-image-wrapper {
    width: 440px;
    height: 440px;
  }
}


.neon-logo {
  filter: drop-shadow(0 0 10px #00fff2)
          drop-shadow(0 0 20px #00fff2)
          drop-shadow(0 0 30px #a64bff);
  transition: all 0.4s ease-in-out;
  animation: logoGlow 3s infinite alternate;
  position: relative;
  z-index: 2;
}

/* הברקה דינמית כאילו יש "אור מהבהב" על הלוגו */
@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 5px #00fff2)
            drop-shadow(0 0 10px #a64bff)
            drop-shadow(0 0 15px #ffffff);
  }
  100% {
    filter: drop-shadow(0 0 20px #ffffff)
            drop-shadow(0 0 35px #a64bff)
            drop-shadow(0 0 45px #ff00ff);
  }
}

/* אפקט הברקה אלגנטי */
.neon-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* אפקט לסקשן למה לבחור בנו */
@keyframes neonPulse {
  0% { box-shadow: 0 0 12px #00fff7, 0 0 24px #a64bff; }
  50% { box-shadow: 0 0 24px #00fff7, 0 0 48px #a64bff; }
  100% { box-shadow: 0 0 12px #00fff7, 0 0 24px #a64bff; }
}

@keyframes flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px #00fff7, 0 0 20px #a64bff; }
  50% { opacity: 0.9; text-shadow: 0 0 15px #00fff7, 0 0 30px #a64bff; }
}

@keyframes spark {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.neon-section {
  background: linear-gradient(to right, #0a0e17, #0b1a33);
  padding: 80px 0;
  color: #e0f7fa;
}

.neon-title {
  font-size: 2.5rem;
  color: #00fff7;
  text-shadow: 0 0 10px #00fff7, 0 0 20px #00fff7, 0 0 40px #00fff7;
  animation: flicker 2.5s infinite alternate;
}

.neon-subtitle {
  color: #a0dffb;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.neon-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #00fff7;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.glow-animate {
  animation: neonPulse 3s infinite ease-in-out;
}

.neon-icon {
  font-size: 2.5rem;
  color: #00fff7;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #00fff7, 0 0 20px #a64bff;
  transition: all 0.3s ease;
}

.pulse-icon {
  animation: spark 2.5s infinite ease-in-out;
}

.neon-box:hover .neon-icon {
  transform: scale(1.2) rotate(5deg);
}


.neon-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, #00fff7, #a64bff, #00fff7);
  box-shadow: 0 0 10px #00fff7, 0 0 20px #a64bff;
  animation: neonDividerMove 6s infinite linear;
}

@keyframes neonDividerMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.btn-neon-cta {
  background: transparent;
  color: #00fff7;
  font-weight: bold;
  border: 2px solid #00fff7;
  border-radius: 40px;
  padding: 12px 32px;
  text-transform: uppercase;
  box-shadow: 0 0 15px #00fff7, 0 0 30px #a64bff;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-neon-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #00fff7 0%, transparent 70%);
  transform: rotate(45deg);
  opacity: 0.1;
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: rotate(45deg) translate(-100%, -100%); }
  100% { transform: rotate(45deg) translate(100%, 100%); }
}

.btn-neon-cta:hover {
  background: rgba(0, 255, 247, 0.1);
  color: #ffffff;
  box-shadow: 0 0 25px #00fff7, 0 0 40px #a64bff;
}

/* כותרת הדף עם מרווח מההדר ואנימציה */
/* --- HEADER של עמוד הבלוג --- */
.page-header {
    padding-top: 180px; /* שדרוג: מרווח עליון נוסף */
    padding-bottom: 100px;
    background: linear-gradient(to bottom, rgba(10,14,23,0.9), rgba(10,14,23,0.95)), url('../images/blog-hero.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1.holographic-text {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00f3ff, #f0f, #00f3ff);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonFlow 8s linear infinite;
}

.page-header p.lead {
    color: #c0c0c0;
    font-size: 1.2rem;
}

/* --- שדרוג תיבת החיפוש --- */
.blog-search .search-box .input-group {
    box-shadow: 0 0 30px rgba(0,255,255,0.15);
    border-radius: 50px;
    overflow: hidden;
    background: #0b1a33;
    padding: 4px;
}

.blog-search .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    background-color: transparent;
    color: #fff;
    padding-right: 20px;
    font-size: 1rem;
}

.blog-search .form-control::placeholder {
    color: #999;
}

.blog-search .btn-primary {
    border-radius: 50px;
    background: linear-gradient(to right, #00f3ff, #00ffa1);
    border: none;
    padding: 10px 22px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.blog-search .btn-primary:hover {
    background: linear-gradient(to right, #00ffa1, #00f3ff);
}

/* --- שדרוג קטגוריות --- */
.blog-categories .category-tag {
    border: 1px solid #444;
    border-radius: 30px;
    color: #eee;
    padding: 6px 18px;
    font-size: 0.9rem;
    margin: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.05);
}

.blog-categories .category-tag.active,
.blog-categories .category-tag:hover {
    background: linear-gradient(to right, #00f3ff, #00ffa1);
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,255,255,0.4);
}

.neon-divider {
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #00f3ff, #a200ff, #00ffa1);
    background-size: 300% 100%;
    animation: neonMove 6s linear infinite;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0,255,255,0.4);
    margin-top: 30px;
    margin-bottom: 60px;
}

@keyframes neonMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

/* כותרת הסקשן עם ניאון */
.contact-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00f3ff;
    text-shadow: 0 0 8px #00f3ff, 0 0 20px #00aaff;
    animation: neon-flicker 1.5s infinite alternate;
}

/* רקע כללי */
.contact-section {
    background: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
    padding: 80px 0;
}

/* מסגרות ניאון */
.contact-info,
.contact-form {
    background: #0d1117;
    border: 2px solid #00f3ff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,243,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info:hover,
.contact-form:hover {
    transform: scale(1.01);
    box-shadow: 0 0 30px rgba(0,243,255,0.4);
}

/* אייקונים */
.contact-details i {
    color: #00f3ff;
    text-shadow: 0 0 5px #00f3ff;
}

/* כפתור שליחה */
.contact-form button {
    background: linear-gradient(90deg, #00f3ff, #00ffa1);
    border: none;
    color: #000;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(255,255,255,0.5);
    box-shadow: 0 0 10px #00f3ff;
    transition: background 0.3s ease;
}
.contact-form button:hover {
    background: linear-gradient(90deg, #00ffa1, #00f3ff);
}

/* תוויות */
.contact-form label {
    color: #e0e5ec;
    font-weight: 500;
}

/* אנימציית כותרת */
@keyframes neon-flicker {
    0% { text-shadow: 0 0 5px #00f3ff, 0 0 10px #00aaff; }
    100% { text-shadow: 0 0 10px #00f3ff, 0 0 20px #00aaff; }
}

