/* ========================================
   Global Styles
   ======================================== */
   * {
    font-family: 'Rubik', sans-serif;
}

body {
    background: #FAFBFC;
    scroll-behavior: smooth;
}

/* ========================================
   Language Support
   ======================================== */
/* RTL Specific Adjustments */
[dir="rtl"] .text-left { text-align: right !important; }
[dir="rtl"] .text-right { text-align: left !important; }
[dir="rtl"] .ml-2 { margin-left: 0; margin-right: 0.5rem; }
[dir="rtl"] .mr-2 { margin-right: 0; margin-left: 0.5rem; }
[dir="rtl"] .ml-60 { margin-left: 0; margin-right: 15rem; }
[dir="rtl"] .mr-60 { margin-right: 0; margin-left: 15rem; }

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    background: #F3F4F6;
    border-radius: 100px;
    padding: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: 100px;
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.lang-btn:hover {
    color: #374151;
}

.lang-btn.active {
    background: white;
    color: #1F2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn .flag {
    font-size: 16px;
}

.lang-btn .lang-code {
    font-weight: 600;
}

.lang-divider {
    width: 1px;
    height: 20px;
    background: #D1D5DB;
    margin: 0 4px;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.lang-btn-mobile {
    padding: 8px 16px;
    background: #F3F4F6;
    border: 2px solid transparent;
    border-radius: 100px;
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn-mobile:hover {
    background: #E5E7EB;
    color: #374151;
}

.lang-btn-mobile.active {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

/* ========================================
   Typography
   ======================================== */
.gradient-bg {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Navbar
   ======================================== */
nav {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98) !important;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(251,191,36,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================================
   New Hero Visual Container
   ======================================== */
.hero-visual-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: visible;
}

/* Central 3D Card */
.central-card {
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px -10px rgba(0, 0, 0, 0.1),
        0 10px 30px -5px rgba(0, 0, 0, 0.05);
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    z-index: 10;
}

.central-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.03) 100%);
    pointer-events: none;
}

.central-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.central-card:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
}

.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* AI Brain Icon */
.ai-brain-icon {
    font-size: 60px;
    color: #3B82F6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Logo Watermark */
.logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 84px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -4px;
    z-index: 1;
    pointer-events: none;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.25);
    animation: logo-pulse 4s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1) blur(0px);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
        filter: brightness(1.1) blur(0.5px);
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.8));
    }
}

/* Code Lines Animation */
.code-lines {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
}

.code-line {
    height: 2px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    margin-bottom: 8px;
    border-radius: 2px;
    opacity: 0.3;
    animation: code-typing 3s ease-in-out infinite;
}

.code-line-1 { width: 60px; animation-delay: 0s; }
.code-line-2 { width: 80px; animation-delay: 0.3s; }
.code-line-3 { width: 50px; animation-delay: 0.6s; }

@keyframes code-typing {
    0%, 100% { transform: scaleX(0.5); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* Neural Network */
.neural-network {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3B82F6;
    border-radius: 50%;
    animation: node-pulse 2s ease-in-out infinite;
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 0; left: 0; animation-delay: 0.3s; }
.node-3 { bottom: 0; right: 0; animation-delay: 0.6s; }

.connection {
    position: absolute;
    height: 1px;
    background: rgba(59, 130, 246, 0.3);
    transform-origin: left center;
}

.connection-1 {
    width: 40px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.connection-2 {
    width: 40px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Floating Skills */
.floating-skill {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 15;
}

.floating-skill:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.floating-skill i {
    font-size: 18px;
}

.skill-automation {
    top: 20px;
    right: -60px;
    animation-delay: 0s;
}

.skill-automation i { color: #8B5CF6; }

.skill-development {
    top: 50%;
    left: -90px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.skill-development i { color: #10B981; }

.skill-data {
    bottom: 150px;
    right: -70px;
    animation-delay: 4s;
}

.skill-data i { color: #F59E0B; }

/* שליטה על מיקומים ב-LTR - שנה את הערכים כרצונך */
[dir="ltr"] .skill-automation {
    /* שנה את המספרים כדי להזיז */
    margin-left: 0px;   /* הזז ימינה/שמאלה */
    margin-top: 0px;    /* הזז למעלה/למטה */
}

[dir="ltr"] .skill-development {
    margin-left: 0px;   /* הזז ימינה/שמאלה */
    margin-top: 0px;    /* הזז למעלה/למטה */
}

[dir="ltr"] .skill-data {
    margin-left: 0px;   /* הזז ימינה/שמאלה */
    margin-top: 0px;    /* הזז למעלה/למטה */
}

[dir="ltr"] .success-badge {
    margin-left: 0px;   /* הזז ימינה/שמאלה */
    margin-top: 0px;    /* הזז למעלה/למטה */
}

/* שליטה על מיקומים במובייל ב-LTR */
@media (max-width: 768px) {
    [dir="ltr"] .skill-automation {
        margin-right: -35px;   /* הזז ימינה/שמאלה */
        margin-top: 0px;    /* הזז למעלה/למטה */
    }
    
    [dir="ltr"] .skill-development {
        margin-left: 0px;   /* הזז ימינה/שמאלה */
        margin-top: 0px;    /* הזז למעלה/למטה */
    }
    
    [dir="ltr"] .skill-data {
        margin-left: 0px;   /* הזז ימינה/שמאלה */
        margin-top: 0px;    /* הזז למעלה/למטה */
    }
    
    [dir="ltr"] .success-badge {
        margin-left: 0px;   /* הזז ימינה/שמאלה */
        margin-top: 0px;    /* הזז למעלה/למטה */
    }
}

/* Success Badge */
.success-badge {
    position: absolute;
    top: 30px;
    left: -70px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
    animation: success-bounce 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes success-bounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}

/* Orbits */
.orbit {
    position: absolute;
    border: 1px dashed rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-1 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #3B82F6;
    border-radius: 50%;
    animation: particle-float 10s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 70%;
    right: 15%;
    animation-delay: 2.5s;
    background: #8B5CF6;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 5s;
    background: #F59E0B;
}

.particle-4 {
    top: 40%;
    right: 10%;
    animation-delay: 7.5s;
    background: #10B981;
}

@keyframes particle-float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translate(30px, -30px) scale(1.5);
        opacity: 1;
    }
    50% { 
        transform: translate(-20px, 20px) scale(1);
        opacity: 0.6;
    }
    75% { 
        transform: translate(20px, 30px) scale(1.2);
        opacity: 0.8;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
    }
    25% { 
        transform: translateY(-15px) translateX(5px); 
    }
    50% { 
        transform: translateY(5px) translateX(-5px); 
    }
    75% { 
        transform: translateY(-10px) translateX(10px); 
    }
}

.floating-dot {
    animation: float-simple 3s ease-in-out infinite;
}

@keyframes float-simple {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   Decorative Elements
   ======================================== */
.dots-pattern {
    background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px);
    background-size: 20px 20px;
}

.wave-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-border svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* ========================================
   Services Section
   ======================================== */
#services {
    position: relative;
}

/* Fade In Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clients Carousel */
.clients-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 80px;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

.client-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-20%);
    }
}

[dir="rtl"] .clients-track {
    animation-name: scroll-logos-rtl;
}

@keyframes scroll-logos-rtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(20%);
    }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: cardSlideUp 0.8s ease-out forwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Card Icons */
.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 36px;
    color: #3B82F6;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.service-card:hover .icon-bg {
    transform: rotate(45deg) scale(1.2);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.service-card:hover .card-icon i {
    transform: scale(1.1);
}

/* Different colors for each card */
.service-card:nth-child(1) .card-icon i { color: #3B82F6; }
.service-card:nth-child(2) .card-icon i { color: #10B981; }
.service-card:nth-child(3) .card-icon i { color: #F59E0B; }

.service-card:nth-child(1) .icon-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.service-card:nth-child(2) .icon-bg {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.service-card:nth-child(3) .icon-bg {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

/* Card Content */
.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.card-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Card Button */
.card-button {
    background: transparent;
    border: 2px solid #3B82F6;
    color: #3B82F6;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #3B82F6;
    transition: left 0.3s ease;
    z-index: -1;
}

.card-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.card-button:hover::before {
    left: 0;
}

/* Floating Background Elements */
.floating-element {
    position: absolute;
    animation: floatBackground 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ========================================
   Appointment Section
   ======================================== */
.appointment-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Steps */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background: #3B82F6;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px -3px rgba(59, 130, 246, 0.5);
}

.step.completed .step-number {
    background: #10B981;
    color: white;
}

.step.completed .step-number {
    position: relative;
}

.step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.step.completed .step-number {
    font-size: 0; /* מסתיר את המספר */
}

.step span {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    white-space: nowrap;
}

.step.active span {
    color: #1F2937;
    font-weight: 600;
}

.step-line {
    width: 100px;
    height: 2px;
    background: #E5E7EB;
    margin: 0 16px;
    margin-bottom: 28px;
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #3B82F6;
    transition: width 0.5s ease;
}

.step.completed + .step-line::after {
    width: 100%;
}

/* Step Content */
.step-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInContent 0.5s ease forwards;
}

.step-content.active {
    display: block;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Date Selector */
.date-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.date-option {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.date-option:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
}

.date-option.selected {
    background: #EFF6FF;
    border-color: #3B82F6;
}

.date-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.date-option.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: #E5E7EB;
}

.date-day {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

.date-number {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.date-month {
    font-size: 14px;
    color: #6B7280;
}

/* Time Grid */
.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.time-slot {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #374151;
}

.time-slot:hover {
    border-color: #3B82F6;
    background: #EFF6FF;
    transform: scale(1.05);
}

.time-slot.selected {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

/* שעות תפוסות */
.time-slot.booked {
    background: #FEE2E2 !important;
    border-color: #FCA5A5 !important;
    color: #DC2626 !important;
    cursor: not-allowed !important;
    position: relative;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time-slot.booked .time-text {
    font-size: 14px;
    font-weight: 500;
}

.time-slot.booked .booked-label {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
}

.time-slot.booked:hover {
    transform: none !important;
    background: #FEE2E2 !important;
    border-color: #FCA5A5 !important;
    box-shadow: none !important;
}

/* שעות שעברו */
.time-slot.past {
    background: #F3F4F6 !important;
    border-color: #E5E7EB !important;
    color: #9CA3AF !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
    opacity: 0.5;
    position: relative;
}

.time-slot.past::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.05) 10px,
        rgba(0,0,0,0.05) 20px
    );
    pointer-events: none;
}

.time-slot.past:hover {
    transform: none !important;
    background: #F3F4F6 !important;
    border-color: #E5E7EB !important;
    box-shadow: none !important;
}

/* Form */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #F9FAFB;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Form Summary */
.form-summary {
    background: #F0F9FF;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1E40AF;
    font-weight: 500;
}

.summary-item i {
    font-size: 18px;
}

/* Buttons */
.back-button {
    background: white;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover {
    border-color: #9CA3AF;
    color: #374151;
}

.submit-button {
    background: #3B82F6;
    color: white;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.submit-button:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Success Box */
.success-box {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
    border: 2px solid #10B981;
    animation: slideInScale 0.5s ease-out;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon-big {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon-big i {
    font-size: 60px;
    color: white;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}

.success-details {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.success-details p {
    margin: 12px 0;
    font-size: 16px;
    color: #1F2937;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Error Box */
.error-box {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
    border: 2px solid #EF4444;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.error-icon i {
    font-size: 60px;
    color: white;
}

/* Reload Button */
.reload-button {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.reload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.4);
}

/* Loading Spinner */
.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #E5E7EB;
    border-top-color: #3B82F6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Loading State */
.loading-state {
    display: none;
    text-align: center;
    padding: 48px;
}

.loading-state.show {
    display: block;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E5E7EB;
    border-top-color: #3B82F6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* אנימציית טעינה משופרת */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.loading-container {
    position: relative;
    margin-bottom: 20px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3B82F6;
    animation: loadingDot 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingDot {
    0%, 100% { 
        transform: scale(0.8); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 1; 
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-visual-container {
        transform: scale(0.9);
        margin-top: 20px;
    }
    
    .ai-brain-icon {
        font-size: 55px;
    }
    
    .logo-watermark {
        font-size: 72px;
    }
    
    .floating-skill {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .skill-automation {
        right: -60px;
        top: 20px;
    }
    
    .skill-development {
        left: -70px;
    }
    
    .skill-data {
        right: -40px;
    }
    
    .success-badge {
        left: -80px;
    }
}

@media (max-width: 768px) {
    /* Fix hero section spacing */
    .hero-gradient {
        padding-bottom: 80px;
        padding-top: 100px;
    }
    
    .hero-visual-container {
        transform: scale(1);
        width: 100%;
        max-width: 350px;
        height: 350px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .central-card {
        width: 260px;
        height: 300px;
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    }
    
    .ai-brain-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .logo-watermark {
        font-size: 60px;
    }
    
    /* Show floating skills in mobile - bigger and better positioned */
    .floating-skill {
        font-size: 13px;
        padding: 10px 18px;
        animation: float-simple 4s ease-in-out infinite;
        box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .floating-skill i {
        font-size: 16px;
    }
    
    .skill-automation {
        top: -8px;
        left: 28%;
        right: auto;
        transform: translateX(-50%);
        z-index: 20;
    }
    
    .skill-development {
        top: 50%;
        right: -60px;
        left: auto;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .skill-data {
        top: 50%;
        left: -60px;
        right: auto;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    @keyframes float-simple {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    /* Hide complex elements */
    .orbit {
        opacity: 0.1;
    }
    
    .particle {
        display: none;
    }
    
    .success-badge {
        bottom: -4px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        animation: success-bounce-mobile 3s ease-in-out infinite;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    @keyframes success-bounce-mobile {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-10px); }
    }
    
    /* Adjust code lines and neural network for mobile */
    .code-lines {
        top: 20px;
        left: 20px;
    }
    
    .neural-network {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    /* Services Mobile */
    .clients-track {
        gap: 50px;
        animation-duration: 15s;
    }
    
    .client-logo {
        height: 65px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 30px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .card-button {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    #services h2 {
        font-size: 28px !important;
    }
    
    /* Appointment Mobile */
    .appointment-card {
        padding: 32px 20px;
    }
    
    .steps-container {
        margin-bottom: 32px;
    }
    
    .step span {
        font-size: 12px;
    }
    
    .step-line {
        width: 60px;
        margin: 0 8px;
    }
    
    .date-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-summary {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-visual-container {
        transform: scale(0.95);
        width: 100%;
        max-width: 320px;
        height: 320px;
    }
    
    .central-card {
        width: 240px;
        height: 280px;
    }
    
    .ai-brain-icon {
        font-size: 45px;
    }
    
    .logo-watermark {
        font-size: 52px;
    }
    
    .floating-skill {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .floating-skill i {
        font-size: 15px;
    }
    
    .skill-automation {
        top: -8px;
        left: 27%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .skill-development {
        top: 50%;
        right: -50px;
        left: auto;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .skill-data {
        top: 50%;
        left: -50px;
        right: auto;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .success-badge {
        bottom: -13px;
        top: auto;
        font-size: 12px;
        padding: 7px 14px;
    }
    
    /* Adjust text content for smaller screens */
    h1 {
        font-size: 32px !important;
    }
    
    p {
        font-size: 16px !important;
    }
    
    /* Services 480px */
    .clients-track {
        gap: 40px;
        animation-duration: 12s;
    }
    
    .client-logo {
        height: 55px;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    /* Appointment 480px */
    .appointment-card {
        padding: 24px 16px;
    }
    
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Hover Effects
   ======================================== */
button:hover {
    transform: translateY(-2px);
}

/* ========================================
   Performance Optimizations
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    nav, .wave-border, .dots-pattern {
        display: none;
    }
    
    .hero-gradient {
        background: white;
    }
}

/* מונה תווים */
.char-counter {
    display: block;
    text-align: left;
    font-size: 14px;
    margin-top: 5px;
    color: #EF4444;
    font-weight: 500;
}

[dir="rtl"] .char-counter {
    text-align: right;
}

/* הדגשת שדות חובה */
.form-group label .text-red-500 {
    color: #EF4444;
    font-weight: bold;
}

/* שדה עם שגיאה */
input:not([name="fullName"]):valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: #10B981 !important;
}

/* החזר גבול רגיל לשדות לא מלאים */
input:placeholder-shown,
textarea:placeholder-shown {
    border-color: #E5E7EB !important;
}

/* ========================================
   About Section
   ======================================== */
#about {
    position: relative;
    background: #F8FAFC; /* אותו רקע כמו services */
}

/* Name Gradient */
.name-gradient {
    background: #3B82F6;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

/* Profile Card 3D */
.profile-card-3d {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.profile-card-inner {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.15),
        0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    transform: rotateY(10deg) rotateX(-5deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.profile-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 15s linear infinite;
    pointer-events: none;
}

.profile-card-3d:hover .profile-card-inner {
    transform: rotateY(-5deg) rotateX(5deg);
}

/* Avatar Container */
.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 32px;
}

.avatar-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse-glow 3s ease-in-out infinite;
}

.avatar-ring {
    position: absolute;
    inset: -5px;
    background: #3B82F6; /* כחול בלבד */
    border-radius: 50%;
    animation: rotate-ring 6s linear infinite;
}

@keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.avatar-image i {
    font-size: 60px;
    color: white;
}

.status-dot {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #10B981;
    border: 4px solid white;
    border-radius: 50%;
    z-index: 3;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #3B82F6; /* כחול במקום גרדיאנט */
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tech-item {
    width: 48px;
    height: 48px;
    background: #F3F4F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6B7280;
    transition: all 0.3s ease;
    animation: tech-float 3s ease-in-out infinite;
    animation-delay: var(--delay);
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.1);
    background: #3B82F6; /* כחול בלבד */
    color: white;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

@keyframes tech-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.floating-badge i {
    font-size: 16px;
}

.badge-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.badge-1 i { color: #10B981; } /* ירוק יפה */

.badge-2 {
    top: 32vh;
    right: 23vh;
    animation-delay: 3s;
}

.badge-2 i { color: #3B82F6; } /* כחול */

/* תיקון מיקום אייקונים צפים ב-LTR בלבד */
[dir="ltr"] .badge-1 {
    left: auto;
    right: -30px;
    top: 50px;  /* הזזה למטה במחשב */
}

[dir="ltr"] .badge-2 {
    left: 23vh;
    right: auto;
    top: 45vh;  /* הזזה למטה במחשב */
}

/* תיקון למובייל ב-LTR */
@media (max-width: 768px) {
    [dir="ltr"] .badge-1 {
        left: auto;
        right: 15px;
        top: 197px;  /* הזזה למטה במובייל */
    }
    
    [dir="ltr"] .badge-2 {
        left: 15px;
        right: auto;
        top: 197px;  /* הזזה למטה במובייל */
    }
}

/* Bio Text */
.bio-text {
    margin-bottom: 32px;
}

.text-gradient {
    background: #3B82F6;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Skills Cloud */
.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.skill-tag {
    background: #F3F4F6;
    color: #4B5563;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid transparent;
}

.skill-tag:hover {
    background: #EFF6FF;
    color: #3B82F6;
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px -5px rgba(59, 130, 246, 0.2);
}

/* Timeline Mini */
.timeline-mini {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

[dir="rtl"] .timeline-mini {
    padding-left: 0;
    padding-right: 30px;
}

.timeline-mini::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #3B82F6; /* כחול בלבד */
}

[dir="rtl"] .timeline-mini::before {
    left: auto;
    right: 7px;
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-20px);
    animation: timeline-fade-in 0.6s ease-out forwards;
}

[dir="rtl"] .timeline-item {
    transform: translateX(20px);
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes timeline-fade-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-dot {
    position: absolute;
    left: -23px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #3B82F6;
    border-radius: 50%;
    z-index: 2;
}

[dir="rtl"] .timeline-dot {
    left: auto;
    right: -23px;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: #3B82F6;
}

.timeline-text {
    font-size: 16px;
    color: #4B5563;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: #3B82F6; /* כחול בלבד */
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button-primary:hover {
    background: #2563EB; /* כחול כהה יותר בהובר */
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.6);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.6);
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-secondary {
    background: white;
    color: #3B82F6;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #E5E7EB;
}

.cta-button-secondary:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
     .profile-card-inner {
        transform: rotateY(5deg) rotateX(-3deg);
        padding: 40px;
    }
    
    .floating-badge {
        position: absolute;
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .badge-1 {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .badge-2 {
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    #about .grid {
        gap: 48px;
    }
    
    .profile-card-inner {
        transform: none;
        padding: 32px;
    }
    
    .avatar-container {
        width: 120px;
        height: 120px;
    }
    
    .avatar-image i {
        font-size: 48px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .tech-item {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .timeline-mini {
        margin-bottom: 32px;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }
    
     .floating-badge {
        position: absolute;
        font-size: 12px;
        padding: 8px 14px;
        box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
        animation: float-simple 4s ease-in-out infinite;
        z-index: 10; /* ודא שהם מעל הכרטיס */
    }
    
    .floating-badge i {
        font-size: 14px;
    }
    
    .badge-1 {
        top: 161px;  /* AI Expert - למעלה */
        left: 15px;
        right: auto;
        transform: none;
    }
    
    .badge-2 {
        top: 161px;  /* מייסד - גם למעלה */
        right: 15px;
        left: auto;
        bottom: auto; /* ביטול המיקום התחתון */
        transform: none;
    }
}

@media (max-width: 480px) {
    #about h2 {
        font-size: 32px !important;
    }
    
    .profile-card-inner {
        padding: 24px;
    }
    
    .quick-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .skill-tag {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .timeline-text {
        font-size: 14px;
    }
     .floating-badge {
        font-size: 11px;
        padding: 6px 12px;
        z-index: 10;
    }
    
    .floating-badge i {
        font-size: 12px;
    }
    
    .badge-1 {
        top: 161px;  /* AI Expert */
        left: 10px;
    }
    
    .badge-2 {
        top: 161px;  /* מייסד */
        right: 10px;
        bottom: auto; /* חשוב! */
    }
}

/* ========================================
   Projects Section - Enhanced Version
   ======================================== */
#projects {
    position: relative;
    background: #F8FAFC; /* אותו רקע כמו About */
}

/* Animations */
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes expand-line {
    from { width: 0; }
    to { width: 96px; }
}

@keyframes tag-slide {
    from { 
        opacity: 0;
        transform: translateX(-10px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-animate {
    animation: badge-pulse 2s ease-in-out infinite;
}

.expand-line {
    animation: expand-line 1s ease-out;
}

.tag-animate {
    animation: tag-slide 0.5s ease-out forwards;
}

/* Project Card Simple */
.project-card-simple {
    background: #F9FAFB;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: card-appear 0.6s ease-out forwards;
}

.project-card-simple:nth-child(1) { animation-delay: 0.2s; }
.project-card-simple:nth-child(2) { animation-delay: 0.4s; }
.project-card-simple:nth-child(3) { animation-delay: 0.6s; }

@keyframes card-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: #3B82F6;
}

/* Project Image */
.project-image {
    position: relative;
    height: 200px;
    background: #1F2937;
    overflow: hidden;
}

.project-image img {
    transition: transform 0.3s ease;
}

.project-card-simple:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-badge {
    background: #3B82F6;
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.pulse-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    border-radius: 100px;
    transform: translate(-50%, -50%);
    animation: pulse-wave 2s ease-out infinite;
}

@keyframes pulse-wave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.3;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Project Info */
.project-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title-simple {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.project-desc-simple {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Project Stats */
.project-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.stat-item-simple {
    text-align: center;
}

.stat-value {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 2px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #6B7280;
}

/* Project Tags */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.project-tags span {
    background: white;
    color: #6B7280;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.project-tags span:hover {
    background: #EFF6FF;
    color: #3B82F6;
    border-color: #3B82F6;
    transform: translateY(-2px);
}

/* Details Button */
.details-button {
    width: 100%;
    background: transparent;
    border: 2px solid #3B82F6;
    color: #3B82F6;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.details-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #3B82F6;
    transition: left 0.3s ease;
    z-index: -1;
}

.details-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.details-button:hover::before {
    left: 0;
}

.details-button i {
    transition: transform 0.3s ease;
}

.details-button:hover i {
    transform: rotate(45deg);
}

/* CTA Button with Glow */
.cta-button-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3B82F6;
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-button-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button-glow:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.cta-button-glow:hover::before {
    left: 100%;
}

/* Project Modal */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: white;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 24px;
    position: relative;
    animation: modal-appear 0.3s ease-out;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;  /* שינוי מ-right ל-left */
    width: 32px;
    height: 32px;
    background: #F3F4F6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

[dir="rtl"] .modal-close {
    left: auto;
    left: 15px;
}

[dir="ltr"] .modal-close {
    left: auto;
    right: 15px;
}

.modal-close:hover {
    background: #EF4444;
    color: white;
    transform: rotate(90deg);
}

/* Modal Content Styles */
.modal-header {
    padding: 30px 30px 0; /* במקום 40px */
}

.modal-header h2 {
    font-size: 24px !important; /* הוסף את זה - במקום 3xl */
    line-height: 1.3;
}

.modal-body {
    padding: 30px; /* במקום 40px */
}

.modal-body h3 {
    font-size: 18px !important; /* הוסף את זה - במקום xl */
}

.modal-body p {
    font-size: 15px !important; /* הוסף את זה - במקום lg */
}

.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-badge {
    background: #EFF6FF;
    color: #3B82F6;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.preview-section {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
}

.preview-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3B82F6;
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.preview-button:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.project-features li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4B5563;
}

[dir="rtl"] .project-features li {
    padding-right: 30px;
    padding-left: 0;
}

[dir="ltr"] .project-features li {
    padding-right: 0;
    padding-left: 30px;
}

.project-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

[dir="ltr"] .project-features li::before {
    right: auto;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px 20px 0;
    }
    
    .modal-header h2 {
        font-size: 20px !important;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body h3 {
        font-size: 16px !important;
    }
    
    .modal-body p {
        font-size: 14px !important;
    }
    
    .project-features li {
        font-size: 13px;
        padding-right: 25px;
    }
    
    .tech-badge {
        font-size: 12px !important;
        padding: 6px 12px;
    }
    
    .preview-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .project-title-simple {
        font-size: 18px;
    }
    
    .project-desc-simple {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .project-tags span {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .details-button {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* ========================================
   Testimonials Section - Simple Version
   ======================================== */
#testimonials {
    background: white;
    position: relative;
}

/* Testimonials Wrapper */
.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    min-height: 450px;
}

/* Testimonial Item */
.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Testimonial Card */
.testimonial-card {
    background: #FAFBFC;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Header */
.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    background: #F3F4F6; /* רקע אפור בהיר למקרה שהתמונה לא נטענת */
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
}

.testimonial-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.testimonial-position {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 8px;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: #FCD34D;
    font-size: 16px;
}

/* Text */
.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    padding-right: 30px; /* מקום לגרשיים */
}

[dir="ltr"] .testimonial-text {
    padding-right: 0;
    padding-left: 30px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    right: 0;
    top: -10px;
    font-size: 48px;
    color: #3B82F6;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

[dir="ltr"] .testimonial-text::before {
    right: auto;
    left: 0;
}

/* Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.testimonial-date {
    font-size: 14px;
    color: #9CA3AF;
}

.testimonial-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #10B981;
    font-weight: 500;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.08);
}

.nav-arrow:hover {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px -8px rgba(59, 130, 246, 0.4);
}

.nav-prev {
    left: -80px;
}

.nav-next {
    right: -80px;
}

/* Dots Navigation */
.nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: -71px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.nav-dot:hover {
    background: #9CA3AF;
}

.nav-dot.active {
    width: 32px;
    border-radius: 4px;
    background: #3B82F6;
}

/* תיקון מיקום חיצים ב-Testimonials עבור LTR */
[dir="ltr"] .nav-arrow {
    top: 60%;  /* הורדה למטה - היה 50% */
}

[dir="ltr"] .nav-prev {
    left: auto;
    right: -80px;
}

[dir="ltr"] .nav-next {
    right: auto;
    left: -80px;
}

/* תיקון למובייל ב-LTR */
@media (max-width: 1024px) {
    [dir="ltr"] .nav-arrow {
        top: 65%;  /* יותר למטה במובייל */
    }
    
    [dir="ltr"] .nav-prev {
        right: -60px;
    }
    
    [dir="ltr"] .nav-next {
        left: -60px;
    }
}

@media (max-width: 768px) {
    [dir="ltr"] .nav-prev {
        right: -30px;
    }
    
    [dir="ltr"] .nav-next {
        left: -30px;
    }
}

@media (max-width: 480px) {
    [dir="ltr"] .nav-arrow {
        top: 85%;  /* הרבה למטה במובייל קטן */
    }
    
    [dir="ltr"] .nav-prev {
        right: 10px;
    }
    
    [dir="ltr"] .nav-next {
        left: 10px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-prev {
        left: -60px;
    }
    
    .nav-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        min-height: 500px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .nav-prev {
        left: -30px;
    }
    
    .nav-next {
        right: -30px;
    }
    
    .testimonial-avatar {
        width: 64px;
        height: 64px;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-header::before {
        width: 84px;
        height: 84px;
    }
    
    .testimonial-text::before {
        font-size: 40px;
        top: -8px;
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        min-height: 550px;
    }
    
    .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
        top: 80%;  /* במקום 50% - מוריד אותם למטה */
    }
    
    .nav-prev {
        left: 10px;
    }
    
    .nav-next {
        right: 10px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-header {
        gap: 16px;
    }
    
    .testimonial-avatar {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .testimonial-text {
        padding-right: 25px;
    }
    
    .testimonial-text::before {
        font-size: 36px;
    }
}

/* ========================================
   Footer Section - Light Theme
   ======================================== */
#footer {
    background: #F8FAFC;
    position: relative;
    border-top: 1px solid #E5E7EB;
}

/* Footer Column */
.footer-column {
    animation: footer-fade-in 0.8s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

@keyframes footer-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Logo */
.footer-logo {
    display: inline-block;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-3px);
    border-color: #3B82F6;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.3);
}

/* Footer Title */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: #3B82F6;
    border-radius: 2px;
}

[dir="ltr"] .footer-title::after {
    right: auto;
    left: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6B7280;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-links a::before {
    content: '←';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #3B82F6;
}

[dir="ltr"] .footer-links a::before {
    content: '→';
    right: auto;
    left: -20px;
}

.footer-links a:hover {
    color: #3B82F6;
    padding-right: 20px;
}

[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    right: 0;
}

[dir="ltr"] .footer-links a:hover::before {
    right: auto;
    left: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6B7280;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #1F2937;
}

.contact-item i {
    width: 20px;
    text-align: center;
    color: #3B82F6;
}

/* Footer CTA */
.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3B82F6;
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.footer-cta:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 2px solid #E5E7EB;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.newsletter-content {
    flex: 1;
    min-width: 280px;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.newsletter-title i {
    color: #3B82F6;
}

.newsletter-text {
    color: #6B7280;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 450px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 100px;
    color: #1F2937;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #9CA3AF;
}

.newsletter-input:focus {
    outline: none;
    background: white;
    border-color: #3B82F6;
}

.newsletter-button {
    background: #3B82F6;
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.newsletter-button:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: white;
    padding: 24px 0;
    margin-top: 60px;
    border-top: 1px solid #E5E7EB;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #6B7280;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3B82F6;
}

/* Responsive */
@media (max-width: 1024px) {
    .newsletter-section {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    #footer {
        padding: 40px 0 0;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    [dir="ltr"] .footer-title::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-right: 0;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .newsletter-section {
        padding: 24px;
    }
    
    .newsletter-title {
        font-size: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-column {
        margin-bottom: 32px;
    }
    
    .footer-column:last-child {
        margin-bottom: 0;
    }
    
    .newsletter-section {
        padding: 20px;
        gap: 20px;
    }
    
    .newsletter-text {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        gap: 16px;
    }
}

/* ========================================
   Contact Form Styles
   ======================================== */

/* Toggle Container */
.toggle-container {
    display: flex;
    background: #F3F4F6;
    padding: 4px;
    border-radius: 100px;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #6B7280;
    background: transparent;
    border: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.toggle-btn:hover {
    color: #374151;
}

.toggle-btn.active {
    background: white;
    color: #3B82F6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.5s ease-out;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-icon-container i {
    font-size: 36px;
    color: white;
}

/* Contact Reasons */
.contact-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.reason-card {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reason-card:hover {
    border-color: #3B82F6;
    background: #EFF6FF;
    transform: translateY(-2px);
}

.reason-card.active {
    background: #EFF6FF;
    border-color: #3B82F6;
}

.reason-card i {
    font-size: 28px;
    color: #3B82F6;
    margin-bottom: 8px;
    display: block;
}

.reason-card span {
    display: block;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Urgency Options */
.urgency-options {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.urgency-pill {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid #E5E7EB;
    background: #F9FAFB;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #6B7280;
    font-size: 14px;
}

.urgency-pill:hover {
    border-color: #3B82F6;
    background: #EFF6FF;
    color: #3B82F6;
}

.urgency-pill.active {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

/* Submit Button */
.contact-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.contact-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.4);
}

/* Success Box for Contact Form */
.success-box-contact {
    text-align: center;
    padding: 60px 40px;
    animation: slideInScale 0.5s ease-out;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    background: white;
    border: 2px solid #3B82F6;
    color: #3B82F6;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.secondary-button:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    /* Contact Form Container */
    .contact-form-card {
        padding: 32px 20px;
    }
    
    /* Form Header */
    .form-header {
        margin-bottom: 24px;
    }
    
    .form-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .form-icon-container i {
        font-size: 28px;
    }
    
    /* Contact Reasons */
    .contact-reasons {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
        gap: 12px;
    }
    
    .reason-card {
        padding: 16px 12px;
    }
    
    .reason-card i {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .reason-card span {
        font-size: 13px;
    }
    
    /* Form Elements */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    /* Urgency Pills */
    .urgency-options {
        flex-direction: column;
    }
    
    .urgency-pill {
        width: 100%;
        text-align: center;
    }
    
    /* Success State */
    .success-box-contact {
        padding: 40px 20px;
    }
    
    .success-icon-big {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .success-icon-big i {
        font-size: 45px;
    }
    
    .success-box-contact h3 {
        font-size: 24px !important;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .success-details {
        background: #F0FDF4;
        border: 1px solid #BBF7D0;
        border-radius: 16px;
        padding: 16px;
        margin: 20px 0;
    }
    
    .success-details p {
        margin: 8px 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    /* Buttons */
    .button-group {
        flex-direction: column;
        margin-top: 24px;
        gap: 12px;
    }
    
    .button-group button {
        width: 100%;
        justify-content: center;
    }
    
    .reload-button,
    .secondary-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .contact-submit-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Toggle Buttons */
    .toggle-container {
        max-width: 100%;
        margin-bottom: 24px;
    }
    
    .toggle-btn {
        padding: 10px 16px;
        font-size: 14px;
        gap: 4px;
    }
    
    .toggle-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Contact Form Container */
    .contact-form-card {
        padding: 24px 16px;
    }
    
    /* Form Header */
    .form-header {
        margin-bottom: 20px;
    }
    
    .form-header h3 {
        font-size: 20px !important;
    }
    
    .form-header p {
        font-size: 14px;
    }
    
    .form-icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .form-icon-container i {
        font-size: 24px;
    }
    
    /* Contact Reasons */
    .contact-reasons {
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .reason-card {
        padding: 14px 10px;
    }
    
    .reason-card i {
        font-size: 22px;
        margin-bottom: 2px;
    }
    
    .reason-card span {
        font-size: 12px;
    }
    
    /* Form Elements */
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    /* Urgency Pills */
    .urgency-pill {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    /* Success State */
    .success-box-contact {
        padding: 32px 16px;
    }
    
    .success-icon-big {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }
    
    .success-icon-big i {
        font-size: 40px;
    }
    
    .success-box-contact h3 {
        font-size: 20px !important;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .success-details {
        padding: 12px;
        margin: 16px 0;
    }
    
    .success-details p {
        font-size: 13px;
        margin: 6px 0;
    }
    
    .success-details i {
        font-size: 14px;
    }
    
    /* Better spacing between elements */
    .success-box-contact > * + * {
        margin-top: 16px;
    }
    
    /* Buttons */
    .button-group {
        margin-top: 20px;
        gap: 10px;
    }
    
    .reload-button,
    .secondary-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .contact-submit-button {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 24px;
    }
    
    /* Toggle Buttons */
    .toggle-container {
        margin-bottom: 20px;
        padding: 3px;
    }
    
    .toggle-btn {
        padding: 8px 12px;
        font-size: 13px;
        gap: 4px;
    }
    
    .toggle-btn i {
        font-size: 14px;
    }
    
    /* Text adjustments */
    .contact-form-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ========================================
   WhatsApp Verification Styles
   ======================================== */

/* כפתור אימות */
.verify-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #3B82F6; /* צבע כחול לSMS */
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    z-index: 10;
}

/* מיקום הכפתור לפי כיוון */
[dir="rtl"] .verify-btn {
    right: 12px;
}

[dir="ltr"] .verify-btn {
    right: 12px;
    left: auto;
}

.verify-btn:hover {
    background: #2563EB;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.verify-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.verify-btn i {
    font-size: 16px;
}

/* סטטוס מאומת */
.phone-verified {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #10B981;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

[dir="rtl"] .phone-verified {
    right: 12px;
}

[dir="ltr"] .phone-verified {
    right: 16px;
    left: auto;
}

.phone-verified i {
    font-size: 18px;
}

/* קונטיינר שדה טלפון */
.phone-input-container {
    position: relative;
}

/* התאמת padding לשדה הטלפון */
.phone-input-container input {
    padding-right: 130px !important; /* בשביל הכפתור ב-RTL */
}

[dir="ltr"] .phone-input-container input {
    padding-right: 130px !important;
    padding-left: 16px !important;
}

/* מודל אימות */
.verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verification-modal.show {
    display: flex;
}

.verification-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* אייקון WhatsApp */
.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon-large i {
    font-size: 40px;
    color: white;
}

/* כותרת המודל */
.verification-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.verification-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* שדות קוד אימות */
.code-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    direction: ltr; /* תמיד משמאל לימין */
}

.code-input {
    width: 50px;
    height: 60px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    transition: all 0.3s ease;
    background: #F9FAFB;
}

.code-input:focus {
    outline: none;
    border-color: #3B82F6;
    background: white;
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.code-input.filled {
    background: #D1FAE5;
    border-color: #10B981;
}

.code-input.error {
    border-color: #EF4444;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* כפתורי פעולה */
.verification-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verify-code-btn {
    background: #3B82F6;
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verify-code-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.3);
}

.verify-code-btn:disabled {
    background: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    transform: none;
}

.resend-link {
    background: none;
    border: none;
    color: #6B7280;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.resend-link:hover {
    color: #3B82F6;
}

.resend-link:disabled {
    color: #D1D5DB;
    cursor: not-allowed;
}

/* טיימר */
.resend-timer {
    font-size: 14px;
    color: #9CA3AF;
}

/* הודעות */
.verification-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.verification-message.show {
    display: block;
}

.verification-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.verification-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

/* סגירת מודל */
.close-verification {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #F3F4F6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

[dir="ltr"] .close-verification {
    right: auto;
    left: 20px;
}

.close-verification:hover {
    background: #E5E7EB;
    transform: rotate(90deg);
}

/* טעינה */
.verification-loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    z-index: 100;
}

.verification-loading.show {
    display: flex;
}

.whatsapp-loader {
    width: 60px;
    height: 60px;
    border: 4px solid #E5E7EB;
    border-top-color: #25D366;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 480px) {
    .verification-content {
        padding: 32px 24px;
    }
    
    .verification-title {
        font-size: 20px;
    }
    
    .verification-subtitle {
        font-size: 14px;
    }
    
    .code-inputs {
        gap: 8px;
    }
    
    .code-input {
        width: 45px;
        height: 55px;
        font-size: 20px;
    }
    
    .verify-code-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* אנימציית הופעה לכפתור אמת */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* הודעת עזרה */
.verify-help-text {
    font-size: 12px;
    color: #6B7280;
    margin-top: 4px;
    font-style: italic;
}

/* ========================================
   Blog Section
   ======================================== */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    border-color: #3B82F6;
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #1F2937;
}

.blog-image img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #3B82F6;
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

[dir="rtl"] .blog-category {
    left: auto;
    right: 20px;
}

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #6B7280;
}

.blog-meta i {
    margin-right: 6px;
    color: #3B82F6;
}

[dir="rtl"] .blog-meta i {
    margin-right: 0;
    margin-left: 6px;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #3B82F6;
}

.blog-excerpt {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #3B82F6;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 12px;
}

/* Blog Page Button Animation */
.blog-card a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-meta {
        font-size: 13px;
        gap: 15px;
    }
}

/* ========================================
   Ultra Modern Language Pills
   ======================================== */
.language-pill {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1F2937;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.language-pill i {
    font-size: 12px;
    opacity: 0.7;
}

.language-pill.lang-he {
    border-color: rgba(59, 130, 246, 0.3);
}

.language-pill.lang-he i {
    color: #3B82F6;
}

.language-pill.lang-en {
    border-color: rgba(99, 102, 241, 0.3);
}

.language-pill.lang-en i {
    color: #6366F1;
}

.language-pill:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

[dir="ltr"] .language-pill {
    right: auto;
    left: 15px;
}

@media (max-width: 480px) {
    .language-pill {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 4px 10px;
        gap: 5px;
    }
    
    .language-pill i {
        font-size: 11px;
    }
    
    [dir="ltr"] .language-pill {
        left: 10px;
    }
}

/* Project Modal Language Info */
.project-language-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EFF6FF;
    color: #3B82F6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #BFDBFE;
}

.project-language-info i {
    font-size: 16px;
    opacity: 0.8;
}

.project-language-info strong {
    font-weight: 600;
    color: #1E40AF;
}

@media (max-width: 768px) {
    .project-language-info {
        font-size: 13px;
        padding: 6px 14px;
        margin-bottom: 15px;
    }
}