/* Reset ותחילת עיצוב */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ניווט */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px; /* גובה מוגדל לניווט */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

/* לוגו תמונה אמיתי - הוגדל משמעותית */
.logo-real {
    height: 70px; /* גובה לוגו מוגדל */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px; /* רווח מוגדל בין פריטים */
    list-style: none;
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 600; /* עבה יותר */
    font-size: 18px; /* גדול יותר */
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: #0ea5e9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px; /* עבה יותר */
    background: #0ea5e9;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: #0ea5e9;
    color: white;
    padding: 14px 32px; /* גדול יותר */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700; /* עבה יותר */
    font-size: 18px; /* גדול יותר */
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
    border-color: #0ea5e9;
}

/* הירו */
.hero {
    padding-top: 160px; /* ריווח מוגדל בגלל הניווט הגבוה יותר */
    padding-bottom: 120px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid #93c5fd;
}

.hero-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.hero h1 {
    font-size: 64px; /* גדול יותר */
    font-weight: 900; /* עבה יותר */
    line-height: 1.05;
    margin-bottom: 30px;
    color: #0f172a;
}

.hero h1 .highlight {
    color: #0ea5e9;
    display: block;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 22px; /* גדול יותר */
    color: #475569;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.btn-primary, .btn-secondary {
    padding: 18px 40px; /* גדול יותר */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px; /* גדול יותר */
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    color: white;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #0284c7, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    border-color: #0ea5e9;
}

.btn-secondary {
    background: white;
    color: #0f172a;
    border: 2px solid #cbd5e1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 18px; /* גדול יותר */
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 22px; /* גדול יותר */
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.floating-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.badge-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.badge-text p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 600;
}

.badge-text h4 {
    font-size: 24px;
    color: #0f172a;
    font-weight: 800;
}

/* סעיפים כלליים */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    color: #0ea5e9;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    background: #dbeafe;
    padding: 8px 20px;
    border-radius: 50px;
}

.section-header h2 {
    font-size: 48px; /* גדול יותר */
    font-weight: 900; /* עבה יותר */
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-desc {
    font-size: 20px; /* גדול יותר */
    color: #64748b;
    max-width: 700px; /* רחב יותר */
    margin: 0 auto;
    line-height: 1.7;
}

/* שירותים */
.services {
    padding: 120px 0; /* ריווח מוגדל */
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); /* קופסאות רחבות יותר */
    gap: 35px; /* רווח מוגדל */
}

.service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 45px; /* ריווח פנימי מוגדל */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: #0ea5e9;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #0ea5e9;
    font-size: 32px; /* גדול יותר */
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 26px; /* גדול יותר */
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 800; /* עבה יותר */
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 17px; /* גדול יותר */
}

/* יצירת קשר */
.contact {
    padding: 120px 0;
    background: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6, #0ea5e9);
}

.contact-container {
    max-width: 900px; /* רחב יותר */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px; /* רווח מוגדל */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px; /* רווח מוגדל */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px; /* רווח מוגדל */
    padding: 28px; /* גדול יותר */
    background: #f8fafc;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: #0ea5e9;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    border-color: #0ea5e9;
    transform: translateX(-8px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.1);
}

.contact-item:hover::before {
    transform: translateY(0);
}

.contact-icon {
    width: 64px; /* גדול יותר */
    height: 64px;
    background: #dbeafe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 28px; /* גדול יותר */
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: #0ea5e9;
    color: white;
    transform: scale(1.1);
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.contact-item:hover .contact-icon.whatsapp {
    background: #25D366;
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 16px; /* גדול יותר */
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-value {
    font-size: 24px; /* גדול יותר */
    color: #0f172a;
    font-weight: 800; /* עבה יותר */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px; /* רווח מוגדל */
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 20px; /* גדול יותר */
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 18px; /* גדול יותר */
    font-family: 'Rubik', sans-serif;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px; /* גבוה יותר */
}

.submit-btn {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 14px;
    font-size: 20px; /* גדול יותר */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #0284c7, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    border-color: #0ea5e9;
}

/* פוטר */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 90px 0 50px; /* ריווח מוגדל */
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 90px; /* רווח מוגדל */
    margin-bottom: 70px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

/* לוגו בפוטר - הוגדל */
.footer-logo-img {
    height: 65px; /* גדול יותר */
    width: auto;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 18px; /* גדול יותר */
    max-width: 450px;
}

.social-links {
    display: flex;
    gap: 20px; /* רווח מוגדל */
}

.social-link {
    width: 48px; /* גדול יותר */
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 22px; /* גדול יותר */
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
    border-color: #0ea5e9;
}

.footer-contact h4 {
    font-size: 24px; /* גדול יותר */
    margin-bottom: 30px;
    color: white;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: #0ea5e9;
    border-radius: 2px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px; /* רווח מוגדל */
    margin-bottom: 20px;
    color: #cbd5e1;
    font-size: 18px; /* גדול יותר */
    transition: color 0.3s;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-item i {
    width: 24px;
    color: #0ea5e9;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 16px; /* גדול יותר */
}

.footer-credit {
    color: #cbd5e1;
    font-weight: 500;
}

/* כפתור וואטסאפ */
.whatsapp-btn {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 70px; /* גדול יותר */
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px; /* גדול יותר */
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse-green 2s infinite;
    border: 3px solid white;
}

@keyframes pulse-green {
    0%, 100% { 
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.8);
        transform: scale(1.05);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7);
    animation: none;
}

.tooltip {
    position: absolute;
    right: 80px;
    background: #0f172a;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 16px; /* גדול יותר */
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s;
    pointer-events: none;
    font-weight: 600;
    border: 1px solid #334155;
}

.whatsapp-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-right-color: #0f172a;
}

/* רספונסיביות */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
    }
    
    .footer-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 90px;
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-real {
        height: 60px; /* קצת יותר קטן במובייל */
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 38px;
    }
    
    .service-card {
        padding: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .footer-contact h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 25px;
        left: 25px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 85px;
    }
    
    .logo-real {
        height: 55px;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-desc {
        font-size: 18px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .contact-item {
        padding: 22px;
    }
    
    .contact-value {
        font-size: 20px;
    }
    
    .footer-logo-img {
        height: 55px;
    }
}