/* --- Enhanced Global Styles & Variables --- */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --primary-blue: #0D6EFD;
    --primary-dark: #212529;
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --border-color: #DEE2E6;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #0D6EFD 0%, #1E3A8A 100%);
    --gradient-secondary: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* --- Remove Dark Mode - Force Light Colors --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #FFFFFF !important;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

/* Loading Screen */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-blue), #1E3A8A);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    pointer-events: none;
}

body.loaded::before {
    opacity: 0;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.05s ease;
}

.cursor-hover {
    transform: scale(2);
    background-color: rgba(13, 110, 253, 0.1);
}

/* Particles Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.8) 0%, transparent 50%);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Enhanced Typography - FORCE LIGHT COLORS --- */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C3E50 !important;
    /* Dark blue-gray instead of black */
    position: relative;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: #2C3E50 !important;
    /* Use solid color instead of gradient */
    position: relative;
    opacity: 1 !important;
}

/* Fix hero title direction and alignment */
#hero h1 {
    color: #2C3E50 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #2C3E50 !important;
    background-clip: unset !important;
    opacity: 1 !important;
    /* CRITICAL: Force RTL direction for Hebrew */
    direction: rtl !important;
    text-align: center !important;
    unicode-bidi: embed !important;
}

/* Ensure proper RTL support throughout */
[dir="rtl"] h1,
[dir="rtl"] #hero h1 {
    direction: rtl !important;
    text-align: center !important;
}

[dir="ltr"] h1,
[dir="ltr"] #hero h1 {
    direction: ltr !important;
    text-align: center !important;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: #2C3E50 !important;
}

p {
    font-size: 1.1rem;
    color: #495057 !important;
    /* Medium gray instead of secondary */
    margin-bottom: 1.5rem;
}

/* Fix all text elements to prevent black */
.about-text p,
.product-card p,
.benefit-card p,
.highlight-item p,
.bot-details p {
    color: #495057 !important;
}

.product-card h3,
.benefit-card h4,
.highlight-item h4,
.bot-details h3 {
    color: #2C3E50 !important;
}

/* Remove Dark Mode Styles Completely */

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: scaleIn 0.6s ease-out 0.3s both;
}

@keyframes scaleIn {
    from {
        transform: translateX(-50%) scaleX(0);
    }

    to {
        transform: translateX(-50%) scaleX(1);
    }
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* --- Scroll Reveal Animations --- */
.fade-in,
.slide-up,
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.fade-in.animate-in,
.slide-up.animate-in,
.slide-in-left.animate-in,
.slide-in-right.animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

.stagger-child {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.stagger-child.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Enhanced Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(222, 226, 230, 0.5);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

header.header-hidden {
    transform: translateY(-100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: var(--transition-smooth);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin-left: auto;
    margin-right: 40px;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 10px 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

nav a:hover::before {
    width: 100%;
}

.logo-link {
    text-decoration: none;
}

/* --- Language Switcher Enhanced --- */
.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 25px;
    padding: 8px 12px;
    backdrop-filter: blur(10px);
}

.lang-switcher a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.lang-switcher a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.lang-switcher a:hover {
    color: white;
    transform: scale(1.05);
}

.lang-switcher a:hover::before {
    left: 0;
}

/* --- Enhanced Hero Section --- */
#hero {
    padding: 140px 0 120px;
    background: var(--gradient-secondary);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    margin-bottom: 40px;
    font-size: 1.3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: #FFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-bounce);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* --- Dynamic Background Enhancement --- */
#hero::before,
#hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
    animation: moveBlob 25s infinite alternate;
}

#hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

#hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FFA500 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -12s;
}

@keyframes moveBlob {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
    }

    100% {
        transform: scale(1.3) translate(40px, -60px) rotate(180deg);
    }
}

/* --- Enhanced About Section --- */
#about {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-primary);
}

#about p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
    font-weight: 500;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    color: var(--text-primary);
}

.about-highlights {
    display: grid;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-right: 4px solid var(--primary-blue);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: var(--transition-smooth);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotateY(180deg);
}

.highlight-icon i {
    font-size: 1.5rem;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 0 0 5px 0;
    font-weight: 700;
}

.highlight-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* --- Enhanced Products Section --- */
#products {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

#products h2 {
    color: var(--primary-dark);
}

#products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(13, 110, 253, 0.02) 50%, transparent 100%);
    z-index: 0;
}

.swiper-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    position: relative;
    z-index: 1;
}

.swiper-slide {
    width: 350px !important;
    height: auto;
    display: flex;
    align-items: stretch;
}

.product-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.product-card:hover::before {
    transform: scaleX(1);
}

a.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    padding: 25px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    position: relative;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.product-card:hover i {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.product-card i.fab.fa-telegram-plane {
    background: linear-gradient(135deg, #2AABEE 0%, #1E96D2 100%);
    box-shadow: 0 8px 25px rgba(42, 171, 238, 0.3);
}

.product-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    font-weight: 700;
}

.product-card:hover h3 {
    color: var(--primary-blue);
    transform: translateY(-5px);
}

.product-card p {
    flex-grow: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

/* --- Product Features --- */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.feature-tag {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(13, 110, 253, 0.2);
    transition: var(--transition-smooth);
}

.feature-tag:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary-blue);
}

/* --- Enhanced Swiper Styling --- */
.swiper-pagination {
    position: relative !important;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    opacity: 1;
    margin: 0 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue) !important;
    transform: scale(1.2);
}

.swiper-pagination-bullet-active::before {
    border-color: rgba(13, 110, 253, 0.3);
    animation: pulseRing 1.5s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-blue) !important;
    background: rgba(255, 255, 255, 0.9);
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.swiper-container:hover .swiper-button-next,
.swiper-container:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-blue);
    color: white !important;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

/* --- Why Choose Us Section --- */
#why-us {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

#why-us h2 {
    color: var(--primary-dark);
    font-weight: 700;
}

#why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.02) 0%, transparent 50%, rgba(13, 110, 253, 0.02) 100%);
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.benefit-icon {
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
}

.benefit-icon i {
    font-size: 3rem;
    color: white;
    background: var(--gradient-primary);
    padding: 25px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

/* --- Enhanced Contact Section --- */
#contact {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-bounce);
}

.contact-method:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.contact-icon {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    transition: var(--transition-smooth);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.contact-icon i {
    font-size: 1.8rem;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin: 0 0 8px 0;
    color: var(--primary-dark);
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-mail {
    margin-top: 30px;
    background: none;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-mail::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.contact-mail:hover {
    color: #FFF;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
}

.contact-mail:hover::before {
    left: 0;
}

/* --- Enhanced Footer --- */
footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    animation: slideIn 2s ease-out;
}

.bots-footer {
    background: var(--bg-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-section i {
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-logo p {
    margin-top: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* --- Hero Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll-indicator i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.hero-scroll-indicator:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* --- BOTS PAGE SPECIFIC STYLES --- */
#bots-hero {
    background-color: var(--bg-secondary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#bots-hero::before,
#bots-hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
    animation: moveBlob 25s infinite alternate;
}

#bots-hero::before {
    width: 400px;
    height: 400px;
    background: #2AABEE;
    top: -150px;
    left: -150px;
}

#bots-hero::after {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    bottom: -100px;
    right: -100px;
    animation-delay: -12s;
}

#bots-list {
    padding: 80px 15px;
}

.bot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInDown 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.bot-item:nth-child(2) {
    animation-delay: 0.1s;
}

.bot-item:nth-child(3) {
    animation-delay: 0.2s;
}

.bot-item:nth-child(4) {
    animation-delay: 0.3s;
}

.bot-item:nth-child(5) {
    animation-delay: 0.4s;
}

.bot-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bot-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    background-color: #e7f1ff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.bot-details h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.bot-details p {
    margin-bottom: 15px;
}

.bot-link {
    font-weight: 500;
    color: var(--primary-blue);
    text-decoration: none;
    transition: letter-spacing 0.3s ease;
}

.bot-link:hover {
    letter-spacing: 0.5px;
}

/* --- Enhanced Responsive Design --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    nav ul {
        gap: 20px;
        margin-right: 20px;
    }

    .swiper-slide {
        width: 320px !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Hide navigation menu on mobile */
    nav ul {
        display: none;
    }

    /* Adjust logo size */
    .logo {
        font-size: 1.5rem;
    }

    /* Language switcher adjustments */
    .lang-switcher {
        margin-right: 0;
        padding: 6px 10px;
    }

    .lang-switcher a {
        padding: 6px 8px;
        font-size: 0.9rem;
    }

    /* Hero section mobile */
    #hero {
        padding: 120px 0 80px;
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

    /* About section mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-highlights {
        gap: 20px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }

    /* Products carousel mobile */
    .swiper-container {
        padding: 20px 10px 60px;
    }

    .swiper-slide {
        width: 280px !important;
        margin: 0 10px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-card i {
        font-size: 2.5rem;
        padding: 20px;
    }

    .product-card h3 {
        font-size: 1.4rem;
    }

    .product-features {
        flex-wrap: wrap;
        gap: 6px;
    }

    .feature-tag {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    /* Benefits grid mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon i {
        font-size: 2.5rem;
        padding: 20px;
    }

    /* Contact section mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }

    .contact-icon {
        padding: 15px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Bots page mobile */
    .bot-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
        gap: 15px;
    }

    .bot-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 0;
    }

    /* Back to top button mobile */
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Hide cursor effects on mobile */
    .custom-cursor,
    .cursor-dot {
        display: none !important;
    }

    /* Scroll indicator mobile */
    .hero-scroll-indicator {
        bottom: 30px;
    }

    .hero-scroll-indicator i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Extra small screens */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Very small carousel */
    .swiper-slide {
        width: 260px !important;
        margin: 0 5px;
    }

    .product-card {
        padding: 25px 15px;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-card p {
        font-size: 0.95rem;
    }

    /* Small benefit cards */
    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-card h4 {
        font-size: 1.2rem;
    }

    .benefit-icon i {
        font-size: 2.2rem;
        padding: 18px;
    }

    /* Compact contact */
    .contact-method {
        padding: 20px 15px;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-details a {
        font-size: 1rem;
    }

    /* Bot items very small */
    .bot-item {
        padding: 20px 10px;
    }

    .bot-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .bot-details h3 {
        font-size: 1.2rem;
    }

    .bot-details p {
        font-size: 0.9rem;
    }
}

/* Desktop specific styles */
@media (min-width: 769px) {
    .bot-item {
        flex-direction: row;
        text-align: right;
        gap: 30px;
    }

    .bot-icon {
        margin-left: 20px;
    }

    /* Show navigation on desktop */
    nav ul {
        display: flex;
    }
}

/* --- Remove ALL Dark Mode and Dark Elements --- */
.product-card,
.benefit-card,
.contact-method,
.highlight-item,
.bot-item {
    background: #FFFFFF !important;
    color: #2C3E50 !important;
    border-color: #DEE2E6 !important;
}

/* Ensure all backgrounds are light */
#hero,
#about,
#products,
#why-us,
#contact,
footer,
body,
html {
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
}

#products {
    background: #F8F9FA !important;
    /* Light gray background */
}

#why-us {
    background: #F8F9FA !important;
    /* Light gray background */
}

footer {
    background: #F8F9FA !important;
    border-top: 1px solid #DEE2E6;
}

/* Fix contact details and footer text */
.contact-details h4,
.footer-section h4 {
    color: #2C3E50 !important;
}

.contact-details a,
.footer-section a {
    color: #6C757D !important;
}

.footer-bottom,
.footer-logo p {
    color: #6C757D !important;
}

/* ==============================
   LEAD TRACKING FORMS STYLING
   Add this to your existing style.css
   ============================== */

/* Newsletter Signup in Hero */
.newsletter-signup {
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.newsletter-form:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.2);
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: var(--primary-dark);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    border-radius: 40px;
}

.newsletter-input::placeholder {
    color: rgba(44, 62, 80, 0.7);
    font-weight: 500;
}

.newsletter-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.newsletter-submit:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.newsletter-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 15px;
    border-radius: 50px;
    border: 2px solid rgba(40, 167, 69, 0.3);
    font-weight: 600;
    animation: successPulse 0.6s ease-out;
}

.newsletter-success i {
    font-size: 1.2rem;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-form-section h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.contact-submit:hover::before {
    left: 100%;
}

.contact-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(40, 167, 69, 0.3);
    font-weight: 600;
    font-size: 1.1rem;
    animation: successSlideIn 0.8s ease-out;
    text-align: center;
}

.contact-success i {
    font-size: 1.5rem;
}

@keyframes successSlideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* RTL Support for Forms */
[dir="rtl"] .newsletter-input-group {
    flex-direction: row-reverse;
}

[dir="rtl"] .form-row {
    direction: rtl;
}

[dir="rtl"] .newsletter-input,
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
    text-align: right;
}

/* Mobile Responsive Forms */
@media (max-width: 768px) {
    .newsletter-signup {
        margin-top: 30px;
        padding: 0 10px;
    }

    .newsletter-form {
        padding: 6px;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input,
    .newsletter-submit {
        width: 100%;
        text-align: center;
    }

    .newsletter-submit {
        padding: 14px 20px;
    }

    .contact-form-section {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .contact-form-section h3 {
        font-size: 1.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
    }

    .contact-submit {
        padding: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .newsletter-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .newsletter-submit {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .contact-form-section {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}

/* Form Loading States */
.newsletter-form.loading .newsletter-submit,
.contact-form.loading .contact-submit {
    position: relative;
    color: transparent;
}

.newsletter-form.loading .newsletter-submit::after,
.contact-form.loading .contact-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Button Hover Effects */
.newsletter-submit:active {
    transform: translateY(0) scale(0.98);
}

.contact-submit:active {
    transform: translateY(-1px);
}

/* Focus Management for Accessibility */
.newsletter-input:focus,
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
    outline: none;
}

/* Error States (for future validation) */
.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group.error input:focus,
.form-group.error textarea:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Success Animation Enhancement */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.newsletter-success,
.contact-success {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* Benefits Carousel - להוסיף לקובץ style.css */

/* Benefits Swiper Container */
.benefits-swiper-container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 40px 20px 80px;
    position: relative;
}

.benefits-swiper-container .swiper-slide {
    width: 280px !important;
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Benefits Navigation Buttons - FIXED */
.benefits-swiper-container .swiper-button-next,
.benefits-swiper-container .swiper-button-prev {
    color: var(--primary-blue) !important;
    background: rgba(255, 255, 255, 0.9);
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.benefits-swiper-container:hover .swiper-button-next,
.benefits-swiper-container:hover .swiper-button-prev {
    opacity: 1;
}

.benefits-swiper-container .swiper-button-next:hover,
.benefits-swiper-container .swiper-button-prev:hover {
    background: var(--primary-blue);
    color: white !important;
    transform: scale(1.1);
}

.benefits-swiper-container .swiper-button-next::after,
.benefits-swiper-container .swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

/* Benefits Pagination */
.benefits-swiper-container .swiper-pagination {
    position: relative !important;
    margin-top: 40px;
}

.benefits-swiper-container .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    opacity: 1;
    margin: 0 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.benefits-swiper-container .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.benefits-swiper-container .swiper-pagination-bullet-active {
    background: var(--primary-blue) !important;
    transform: scale(1.2);
}

.benefits-swiper-container .swiper-pagination-bullet-active::before {
    border-color: rgba(13, 110, 253, 0.3);
    animation: pulseRing 1.5s infinite;
}

/* Responsive Design for Benefits Carousel */
@media (max-width: 1024px) {
    .benefits-swiper-container .swiper-slide {
        width: 300px !important;
    }
}

@media (max-width: 768px) {
    .benefits-swiper-container {
        padding: 20px 10px 60px;
    }

    .benefits-swiper-container .swiper-slide {
        width: 280px !important;
        margin: 0 10px;
    }

    .benefits-swiper-container .swiper-button-next,
    .benefits-swiper-container .swiper-button-prev {
        width: 45px !important;
        height: 45px !important;
        margin-top: -22px !important;
    }

    .benefits-swiper-container .swiper-button-next::after,
    .benefits-swiper-container .swiper-button-prev::after {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .benefits-swiper-container .swiper-slide {
        width: 260px !important;
        margin: 0 5px;
    }

    .benefits-swiper-container .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}
/* Remove the broken dark mode media query completely */