.elementor-4883 .elementor-element.elementor-element-1267152{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f01f15b *//* 🎨 עיצוב פוטר 4 עמודות רספונסיבי - Code by LEMON SHLIF */
.footer-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: right;
    background: linear-gradient(135deg, #ff7e00, #ff3c00);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-column {
    flex: 1;
    margin: 15px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: bold;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    width: 100%;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    text-decoration: none;
    color: #FFF;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-column p a {
    color: #FFD700;
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-column p a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #FFF;
    margin: 8px 0;
}

/* עיצוב מספר טלפון */
.footer-column p:last-child {
    font-weight: bold;
    font-size: 18px;
}

/* גילוי נאות בתחתית */
.footer-container > div:last-child {
    flex: 1 1 100%;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #FFF;
}

/* רספונסיביות מובייל */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
    }

    .footer-column {
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-column h3 {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-1267152 *//* 🎨 שיפור עיצוב הפוטר עם אפקטים חלקים - Code by LEMON SHLIF */
.footer-container {
    background: linear-gradient(135deg, #FFA726, #FF5722);
    padding: 40px 20px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-column {
    flex: 1;
    margin: 10px;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: bold;
    color: #FFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: white;
    margin: 5px auto 0;
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin: 10px 0;
    font-size: 18px;
}

.footer-list li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.footer-list li a:hover {
    color: #FFF59D;
    transform: scale(1.1);
}

.footer-list li i {
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s ease-in-out;
}

.footer-list li:hover i {
    transform: rotate(15deg);
}

/* אפקט הופעה לכותרות */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* התאמה למובייל */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}/* End custom CSS */