:root {
    --primary-color: #0d6efd; /* כחול אמין */
    --secondary-color: #ffc107; /* צהוב בולט לקריאה לפעולה */
    --dark-color: #212529; /* טקסט כהה */
    --light-color: #f8f9fa; /* רקע בהיר */
    --gray-color: #6c757d;
    --font-family: 'Heebo', sans-serif;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- General & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: #ffffff;
    color: var(--dark-color);
    text-align: right;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; color: var(--primary-color); }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img, picture {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.floating-cta .btn {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); }
    70% { transform: scale(1); }
    100% { transform: scale(0.95); }
}

/* --- Header --- */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    transition: padding 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo i { color: var(--primary-color); }

.main-nav {
    display: none; /* Hidden on mobile */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li { margin: 0 15px; }
.nav-links a { color: var(--dark-color); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-color); }

.header-cta { display: none; }

.hamburger-menu {
    display: block;
    cursor: pointer;
    font-size: 1.8rem;
}

/* Mobile Nav Styles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(5px);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active { display: flex; }

.mobile-nav .nav-links {
    flex-direction: column;
    text-align: center;
}

.mobile-nav .nav-links li {
    margin: 20px 0;
}

.mobile-nav .nav-links a {
    font-size: 1.5rem;
}

.close-menu {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    padding-top: 120px;
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=1200&fm=webp&fit=crop') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: var(--light-color);
}

/* --- Services Section --- */
#services {
    background-color: var(--light-color);
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.service-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-content ul {
    list-style-type: none;
    padding-right: 0;
}
.about-content li {
    padding-right: 25px;
    position: relative;
    margin-bottom: 10px;
}
.about-content li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    right: 0;
    top: 2px;
}

/* --- WebLite Promo Section 1 --- */
.weblite-promo-1 {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
}

.weblite-promo-1 h2 {
    color: var(--secondary-color);
}

.weblite-promo-1 p {
    color: var(--light-color);
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

/* --- Testimonials Section --- */
#testimonials {
    background-color: var(--light-color);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    border-right: 5px solid var(--primary-color);
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}
.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 15px;
}
.author-info strong {
    display: block;
    color: var(--dark-color);
}

/* --- Contact & CTA Section --- */
.contact-cta {
     background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1200&fm=webp&fit=crop') center center/cover fixed;
     text-align: center;
     color: #fff;
}

.contact-cta h2 { color: #fff; }
.contact-cta p { color: var(--light-color); max-width: 600px; margin: 0 auto 2rem auto; }

/* --- WebLite Promo Section 2 --- */
.weblite-promo-2 {
    background-color: #fff;
}
.weblite-promo-2 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.weblite-promo-2 h3 {
    color: var(--primary-color);
}
.weblite-promo-2 .logo-text {
    font-weight: 700;
    color: var(--dark-color);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 40px;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}
.footer-col p, .footer-col ul {
    color: var(--gray-color);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a { color: var(--gray-color); transition: color 0.3s; }
.footer-col a:hover { color: var(--secondary-color); }
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-left: 8px;
    transition: background-color 0.3s;
}
.social-links a:hover { background-color: var(--primary-color); }

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
}
/* --- Why Us Section (New Design) --- */
.why-us {
    background: var(--light-color);
}

.why-us-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.why-us-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.advantage-item .icon {
    font-size: 1.5rem;
    color: #fff;
    background: var(--primary-color);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.advantage-item:hover .icon {
    transform: scale(1.1);
}

.advantage-item h3 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.advantage-item p {
    margin-bottom: 0;
}
/* --- Media Queries (Tablet & Up) --- */
@media (min-width: 768px) {
	
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    .hamburger-menu { display: none; }
    .main-nav { display: block; }
    .header-cta { display: inline-block; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .about-content { text-align: right; }
    
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
     .weblite-promo-2 .container { flex-direction: row; justify-content: space-between; text-align: right; }
	     .why-us-grid-new { grid-template-columns: repeat(2, 1fr); gap: 3rem; } /* <--- הוסף את השורה הזו */

}

/* --- Media Queries (Desktop & Up) --- */
@media (min-width: 992px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
/* --- Additional JS Effects --- */

/* 1. Active Nav Link */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* 2. Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: #0b5ed7;
    color: #fff;
}