/* ===== Header ===== */
.cf7-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cf7-step-number {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #d32f2f;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf7-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

/* ===== Progress bar ===== */
.cf7-progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px !important;
}

.cf7-progress-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: #d32f2f;
    transition: width 0.3s ease;
}

/* ===== Progress text ===== */
.cf7-progress-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* ===== Steps ===== */
.cf7-step {
    display: none;
}

/* ===== Navigation ===== */
.cf7-navigation > p {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.cf7-navigation > p > .cf7-submit {
    display: flex;
    direction: rtl;
}