/* =========================================
   Widget: Process Steps (Cards)
   ========================================= */

.ebc-process-grid {
    display: grid;
    /* Default is handled by Elementor settings now */
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px;
    margin-top: 20px;
}

.ebc-process-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === ICON CIRCLE === */
.ebc-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed #bfa37c;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    margin-bottom: 15px;
}

.ebc-icon-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #bfa37c;
    line-height: 1;
}

.ebc-icon-inner i,
.ebc-icon-inner svg {
    width: 1em;
    height: 1em;
    display: block;
    line-height: 1;
}

.ebc-icon-inner svg {
    fill: currentColor;
}

/* === TRIANGLE CONNECTOR === */
.ebc-connector-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
    position: relative;
    z-index: 11;
    margin-top: 0;
    margin-bottom: -1px;
    transition: border-bottom-color 0.3s ease;
}

/* === CARD BOX === */
.ebc-process-card {
    width: 100%;
    background-color: #ffffff;
    padding: 30px 30px 40px;
    border-radius: 4px;
    text-align: left;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%; /* Ensures cards in the same row are equal height */
}

/* === HOVER EFFECTS === */
.ebc-process-item:hover .ebc-process-card {
    transform: translateY(-5px);
}

/* === STEP NUMBER === */
.ebc-step-number {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #e6e6e6;
    line-height: 1.2;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === TYPOGRAPHY === */
.ebc-step-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.ebc-step-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    transition: color 0.3s ease;
}

/* NOTE: Media queries removed. 
   Responsiveness is now handled by the Elementor Widget controls. */