/* ZSQUARE Process Steps Plugin - Base Styles */

.zsquare-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

/* Each step column */
.zsquare-process-step {
    display: flex;
    flex-direction: column;
    padding: 0 20px 0 0;
    box-sizing: border-box;
}

/* Badge + connector row */
.zsquare-process-badge-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

/* The number/icon badge */
.zsquare-process-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #B8962E;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.zsquare-process-badge i,
.zsquare-process-badge svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: inherit;
    fill: currentColor;
}

/* Dashed connector line between badges */
.zsquare-process-connector {
    flex: 1;
    border-top: 2px dashed #CCCCCC;
    margin-left: 12px;
    height: 0;
}

/* Heading */
.zsquare-process-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #0F172A;
    margin: 0 0 12px 0;
    padding: 0;
}

/* Description */
.zsquare-process-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 20px 0;
}

/* Button */
.zsquare-process-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #B8962E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.zsquare-process-btn:hover {
    opacity: 0.88;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive fallbacks (Elementor responsive controls override these) */
@media (max-width: 1024px) {
    .zsquare-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide connectors on tablet/mobile since layout wraps */
    .zsquare-process-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .zsquare-process-grid {
        grid-template-columns: 1fr;
    }
}
