/* --- FOLYAMAT BEMUTATÁSA MODERNIZÁLÁS --- */

/* 1. Alap konténer beállítása */
.process-step {
    gap: 20px !important;
    padding: 40px 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

/* 2. Ikon dobozok kártya stílusa */
.process-step .elementor-widget-icon-box {
    background: #ffffff;
    padding: 30px 20px !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden; /* Fontos az animált csík miatt */
}

.process-step .elementor-widget-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #84b026; /* A zöld színed */
}

/* 3. Ikonok egyedi stílusa */
.process-step .elementor-icon {
    background-color: #f9f6f2 !important; /* Nagyon halvány barna/krém */
    color: #592c0e !important; /* A barna színed */
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    border-radius: 12px !important;
    font-size: 24px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.process-step .elementor-widget-icon-box:hover .elementor-icon {
    background-color: #84b026 !important;
    color: #ffffff !important;
    transform: rotate(10deg);
}

/* 4. Szövegek formázása */
.process-step .elementor-icon-box-title {
    color: #592c0e !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin: 15px 0 10px !important;
}

.process-step .elementor-icon-box-description {
    font-size: 0.95rem !important;

    line-height: 1.5 !important;
}

/* 5. AZ ANIMÁLT CSÍK A LEÍRÁS ALATT */
.process-step .elementor-icon-box-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* Alaphelyzetben nem látszik */
    height: 4px;
    background: linear-gradient(90deg, #592c0e, #84b026);
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-step .elementor-widget-icon-box:hover .elementor-icon-box-content::after {
    width: 100%; /* Lebegtetésre kitöltődik */
}

/* --- MOBIL FINOMÍTÁS --- */
@media (max-width: 767px) {
    .process-step .elementor-widget-icon-box {
        max-width: 100%;
        min-width: 100%;
    }
}