
/* Super Blank */

/* Spacing for mobile menu */
.ast-mobile-header-content {
	padding: 8px 0 16px 0;
}

/* No border on X close button */
.ast-mobile-popup-drawer.active .menu-toggle-close:focus {
	border-width: 0;
}

/* X close button position */
.ast-mobile-popup-inner .ast-mobile-popup-header button#menu-toggle-close {
	padding: 34px;
}

/* Nested mobile arrows */
button.ast-menu-toggle {
	box-shadow: none;
}

.ast-menu-toggle:focus {
	outline: 0;
}

.ast-header-break-point .main-navigation li.menu-item-has-children ul.sub-menu li.menu-item a.menu-link span.ast-icon.icon-arrow {
	display: none;
}

.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .ast-menu-toggle {
	/* Cannot avoid !important because Elementor already unsets the color with !important by itself */
	color: var(--ast-global-color-3) !important;
}
        






/* Container Layout */
.eco-hero-section {
    display: flex;
    flex-direction: row-reverse; /* Keeps images on left, text on right for RTL */
    gap: 40px;
    font-family: 'Heebo', 'Rubik', sans-serif; /* Ensure you have a Hebrew font loaded */
    direction: rtl;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Content Side (Right) */
.eco-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eco-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
    margin-bottom: 20px;
}

.eco-title .highlight {
    color: #4a7c38;
}

.eco-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Stats Cards */
.eco-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.eco-stat-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.eco-icon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.eco-icon-header .icon {
    font-size: 1.2rem;
}

.eco-icon-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.eco-stat-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* CTA Green Box */
.eco-cta-box {
    background-color: #558343;
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: right;
}

.eco-cta-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.eco-cta-box p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Image Grid Side (Left) */
.eco-image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px; /* Fixed height for consistency */
    gap: 20px;
}

.eco-img-card {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.eco-img-card:hover {
    transform: translateY(-5px);
}

/* Overlay Text on Images */
.eco-img-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: right;
    box-sizing: border-box;
}

.eco-img-overlay strong {
    display: block;
    font-size: 1.1rem;
}

.eco-img-overlay span {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #ffcccc; /* Slight red tint for danger status */
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .eco-hero-section {
        flex-direction: column;
    }
    
    .eco-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .eco-image-grid {
        grid-template-rows: 200px 200px;
    }
}